remove old code and move rewrite to src proper, added new textures

This commit is contained in:
John Landers
2024-01-15 23:17:48 -06:00
parent c110396954
commit fcdf44221f
62 changed files with 97 additions and 689 deletions

10
src/tc_settings.c Normal file
View File

@@ -0,0 +1,10 @@
#include "tc_settings.h"
int game_speed_setting = 50;
int target_fps_setting = 60;
struct TC_Setting *tc_settings;
void TC_Set_Game_Speed(int speed) { game_speed_setting = speed; }
void TC_Set_Target_Fps(int fps) { target_fps_setting = fps; }