Adding in event stabilization

This commit is contained in:
Remnants of Forgotten Disney
2024-04-17 09:17:15 -05:00
parent 7c3df786f8
commit a4bda4c673
21 changed files with 609 additions and 215 deletions

View File

@@ -8,6 +8,7 @@
#include "string.h"
int global_frame_count = 0;
bool rand_enabled = true;
void global_next_frame()
{
@@ -33,4 +34,12 @@ void global_next_frame()
int get_frame_count()
{
return global_frame_count;
}
void enable_auto_random(){
rand_enabled = true;
}
void disable_auto_random(){
rand_enabled = false;
}