1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2024-09-20 01:00:53 +00:00
Funkin/source/funkin/import.hx
2022-12-17 15:19:42 -05:00

14 lines
310 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.IteratorTools;
using funkin.util.tools.StringTools;
#end