1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2024-09-20 09:09:00 +00:00
Funkin/source/funkin/import.hx

17 lines
428 B
Haxe
Raw Normal View History

package;
2022-01-26 19:19:57 +00:00
#if !macro
// Only import these when we aren't in a macro.
import funkin.Paths;
2022-01-26 19:19:57 +00:00
import flixel.FlxG; // This one in particular causes a compile error if you're using macros.
// These are great.
using Lambda;
using StringTools;
2023-06-16 21:37:56 +00:00
using funkin.util.tools.ArrayTools;
2023-06-22 05:41:01 +00:00
using funkin.util.tools.ArraySortTools;
using funkin.util.tools.IteratorTools;
2023-06-16 21:37:56 +00:00
using funkin.util.tools.MapTools;
using funkin.util.tools.StringTools;
2022-01-26 19:19:57 +00:00
#end