Starsector API
Loading...
Searching...
No Matches
BaseFactorTooltip.java
Go to the documentation of this file.
1package com.fs.starfarer.api.impl.campaign.intel.events;
2
3import com.fs.starfarer.api.ui.TooltipMakerAPI;
4import com.fs.starfarer.api.ui.TooltipMakerAPI.TooltipCreator;
5
6public class BaseFactorTooltip implements TooltipCreator {
7
8 public boolean isTooltipExpandable(Object tooltipParam) {
9 return false;
10 }
11
12 public float getTooltipWidth(Object tooltipParam) {
14 }
15
16 public void createTooltip(TooltipMakerAPI tooltip, boolean expanded, Object tooltipParam) {
17
18 }
19
20}
void createTooltip(TooltipMakerAPI tooltip, boolean expanded, Object tooltipParam)