001package com.fs.starfarer.api.ui;
002
003import com.fs.starfarer.api.ui.TooltipMakerAPI.TooltipCreator;
004
005public class BaseTooltipCreator implements TooltipCreator {
006        public boolean isTooltipExpandable(Object tooltipParam) {
007                return false;
008        }
009
010        public float getTooltipWidth(Object tooltipParam) {
011                return 500;
012        }
013
014        public void createTooltip(TooltipMakerAPI tooltip, boolean expanded, Object tooltipParam) {
015                
016        }
017
018}