mirror of
https://github.com/GearsProgress/Poke_Transporter_GB.git
synced 2026-04-13 20:55:57 -05:00
11 lines
174 B
C++
11 lines
174 B
C++
#include "global_frame_counter.h"
|
|
|
|
int global_frame_count = 0;
|
|
|
|
void global_next_frame(){
|
|
global_frame_count++;
|
|
}
|
|
|
|
int get_frame_count(){
|
|
return global_frame_count;
|
|
} |