diff options
author | BoredGuy <osome3717@gmail.com> | 2025-08-02 15:25:04 +0300 |
---|---|---|
committer | BoredGuy <osome3717@gmail.com> | 2025-08-02 15:25:04 +0300 |
commit | 2b95f565e8b88841d20f79205ac600cc14e28458 (patch) | |
tree | e18a02531ee44d5c9c5531b1c5e54a7baa901d5f /src/main.c | |
parent | 2c2910c33c71878c8fb8083c1fbc1a2d282a979b (diff) |
Added transparency to collider overlays
- And some test objects into the scene
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -13,6 +13,11 @@ int main() { LoadAssets(); InitGame(); + AddBackground("bar-background"); + + AddPlayer(0, 0); + AddWall(100, 100, 1000, 100); + while(!WindowShouldClose()) { UpdateGame(GetFrameTime()); |