mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2025-09-05 05:07:39 +00:00
27 lines
545 B
Haxe
27 lines
545 B
Haxe
|
package funkin.save.migrator;
|
||
|
|
||
|
// Internal enums used to ensure old save data can be parsed by the default Haxe unserializer.
|
||
|
// In the future, only primitive types and abstract enums should be used in save data!
|
||
|
|
||
|
@:native("funkin.ui.debug.stageeditor.StageEditorTheme")
|
||
|
enum StageEditorTheme
|
||
|
{
|
||
|
Light;
|
||
|
Dark;
|
||
|
}
|
||
|
|
||
|
@:native("funkin.ui.debug.charting.ChartEditorTheme")
|
||
|
enum ChartEditorTheme
|
||
|
{
|
||
|
Light;
|
||
|
Dark;
|
||
|
}
|
||
|
|
||
|
@:native("funkin.ui.debug.charting.ChartEditorLiveInputStyle")
|
||
|
enum ChartEditorLiveInputStyle
|
||
|
{
|
||
|
None;
|
||
|
NumberKeys;
|
||
|
WASDKeys;
|
||
|
}
|