Funkin/source/funkin/import.hx
2023-01-22 19:55:30 -05:00

12 lines
342 B
Haxe

#if !macro
// Only import these when we aren't in a macro.
import funkin.Paths;
import flixel.FlxG; // This one in particular causes a compile error if you're using macros.
// These are great.
using Lambda;
using StringTools;
using funkin.util.tools.MapTools;
using funkin.util.tools.IteratorTools;
using funkin.util.tools.StringTools;
#end