summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authorBoredGuy <osome3717@gmail.com>2025-08-26 12:33:32 +0300
committerBoredGuy <osome3717@gmail.com>2025-08-26 12:33:32 +0300
commit87d07175058ee4ae18fce608de81c68d7d9bb178 (patch)
tree1eb459ff40aded29f6433bcd413d47ff870fd4e0 /src/main.c
parent978c543891af8dbe9e95b27c4e2c46645d45138c (diff)
Player Improvements
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main.c b/src/main.c
index 317b51c..f5be59f 100644
--- a/src/main.c
+++ b/src/main.c
@@ -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());