diff options
| author | realtradam <[email protected]> | 2024-05-12 17:45:10 -0400 |
|---|---|---|
| committer | realtradam <[email protected]> | 2024-05-12 17:45:10 -0400 |
| commit | 13bd9e293e8ed12f39d7b97036abfad69b84ed19 (patch) | |
| tree | 30531ae920a2a8bfcf333a10b77f36a7996b1fa6 /src/bullet.c | |
| parent | 6042fa9181ebde0fb90a6f4ba2b4221699e6661f (diff) | |
| download | tojam2024-13bd9e293e8ed12f39d7b97036abfad69b84ed19.tar.gz tojam2024-13bd9e293e8ed12f39d7b97036abfad69b84ed19.zip | |
score system
Diffstat (limited to 'src/bullet.c')
| -rw-r--r-- | src/bullet.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/bullet.c b/src/bullet.c index 12e4ca6..785ce2f 100644 --- a/src/bullet.c +++ b/src/bullet.c @@ -43,13 +43,13 @@ render_bullets(void) continue; } 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, DARKBLUE); + } 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, DARKPURPLE); + } } } |
