The Omega Refactor(TM) + Input Options

This commit is contained in:
2025-06-30 21:29:59 -04:00
parent 6b5437a2fd
commit 30880c003d
35 changed files with 1490 additions and 1421 deletions

View File

@@ -9,7 +9,7 @@ struct Snapshot
{
Anm2 anm2;
Anm2Reference reference;
f32 time;
f32 time = 0.0f;
};
struct SnapshotStack
@@ -26,6 +26,8 @@ struct Snapshots
Input* input = NULL;
SnapshotStack undoStack;
SnapshotStack redoStack;
bool isUndo = false;
bool isRedo = false;
};
void snapshots_undo_stack_push(Snapshots* self, Snapshot* snapshot);