diff options
author | BoredGuy <osome3717@gmail.com> | 2025-08-26 12:33:32 +0300 |
---|---|---|
committer | BoredGuy <osome3717@gmail.com> | 2025-08-26 12:33:32 +0300 |
commit | 87d07175058ee4ae18fce608de81c68d7d9bb178 (patch) | |
tree | 1eb459ff40aded29f6433bcd413d47ff870fd4e0 /src/main.c | |
parent | 978c543891af8dbe9e95b27c4e2c46645d45138c (diff) |
Player Improvements
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -7,14 +7,14 @@ int main() { InitWindow(WINDOW_WIDTH, WINDOW_HEIGHT, "My BeatEmup"); - SetTargetFPS(60); + SetTargetFPS(120); LoadAssets(); InitGame(); AddBackground("bar-background"); - AddPlayer(0, 0); - AddWall(100, 100, 1000, 100); + AddPlayer(0, 400); + AddWall(0, 160, 1000000, 100); while(!WindowShouldClose()) { UpdateGame(GetFrameTime()); |