diff options
| author | realtradam <[email protected]> | 2024-05-12 17:48:41 -0400 |
|---|---|---|
| committer | realtradam <[email protected]> | 2024-05-12 17:48:41 -0400 |
| commit | 5fcd6b9dfe744768cdbb359277091ee03f610a6d (patch) | |
| tree | 9478284864388ac52b93a6315a030b1af17b6d2d /src | |
| parent | 13bd9e293e8ed12f39d7b97036abfad69b84ed19 (diff) | |
| download | tojam2024-5fcd6b9dfe744768cdbb359277091ee03f610a6d.tar.gz tojam2024-5fcd6b9dfe744768cdbb359277091ee03f610a6d.zip | |
style changes
Diffstat (limited to 'src')
| -rw-r--r-- | src/bullet.c | 4 | ||||
| -rw-r--r-- | src/main.c | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/src/bullet.c b/src/bullet.c index 785ce2f..36b0e46 100644 --- a/src/bullet.c +++ b/src/bullet.c @@ -44,11 +44,11 @@ render_bullets(void) } else if(bullets[i].team == 1) { - DrawCube(bullets[i].position, 0.25, 0.25, 0.25, DARKBLUE); + DrawCube(bullets[i].position, 0.25, 0.25, 0.25, BLUE); } else if(bullets[i].team == 2) { - DrawCube(bullets[i].position, 0.25, 0.25, 0.25, DARKPURPLE); + DrawCube(bullets[i].position, 0.25, 0.25, 0.25, VIOLET); } } } @@ -58,15 +58,15 @@ World world = { { .position = { 0 }, .direction = { 1, 0, 0 }, - .speed = 1.0f/60.0f, - .color = BLUE, + .speed = 1.0f/30.0f, + .color = DARKBLUE, .camera_mode = 1, }, { .position = { 2, 0, 0 }, .direction = { -1, 0, 0 }, - .speed = 1.0f/60.0f, - .color = VIOLET, + .speed = 1.0f/30.0f, + .color = DARKPURPLE, .camera_mode = 1, } } |
