it's kind of finished

This commit is contained in:
2025-06-28 23:33:15 -04:00
parent d7913c01db
commit 0e8d1ae6b4
19 changed files with 1598 additions and 1133 deletions

View File

@@ -18,14 +18,18 @@ struct State
Editor editor;
Preview preview;
Anm2 anm2;
Anm2Reference reference;
Resources resources;
Settings settings;
Tool tool;
bool isArgument = false;
bool isRunning = true;
char argument[PATH_MAX] = STRING_EMPTY;
char startPath[PATH_MAX] = STRING_EMPTY;
bool isArgument = false;
u64 tick = 0;
s32 animationID = -1;
s32 spritesheetID = -1;
u64 lastTick = 0;
bool isRunning = true;
u64 tick = 0;
};
void init(State* state);