Poke_Transporter_GB/source/global_frame_counter.cpp
Remnants of Forgotten Disney 68cdc3c121 Pokedex interface
2023-08-23 12:50:55 -05:00

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;
}