mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2025-08-30 18:34:51 +00:00
And add a bit of error handling to CharSelectGF & CharSelectSubState Co-Authored-By: Linus Torvalds <torvalds@linux-foundation.org>
19 lines
380 B
Haxe
19 lines
380 B
Haxe
package funkin.util;
|
|
|
|
import haxe.ui.tooltips.ToolTipRegionOptions;
|
|
|
|
@:nullSafety
|
|
class HaxeUIUtil
|
|
{
|
|
public static function buildTooltip(text:String, left:Float = 0.0, top:Float = 0.0, width:Float = 0.0, height:Float = 0.0):ToolTipRegionOptions
|
|
{
|
|
return {
|
|
tipData: {text: text},
|
|
left: left,
|
|
top: top,
|
|
width: width,
|
|
height: height
|
|
}
|
|
}
|
|
}
|