This commit is contained in:
zongor 2025-05-17 22:39:35 -04:00
parent ffbf044734
commit 775a3aef4b
1 changed files with 2 additions and 2 deletions

View File

@ -29,10 +29,10 @@ fn main (argc real, argv str[]) {
me.update(); me.update();
universe.draw_grid(30, 1.0); universe.draw_grid(30, 1.0);
universe.draw_cube(me.pos, 0.5, 0.5, 0.5, me.apperance); universe.draw_cube(me.pos, (0.5, 0.5, 0.5), me.apperance);
for (player in players) { for (player in players) {
universe.draw_cube(player.pos, 0.5, 0.5, 0.5, player.apperance); universe.draw_cube(player.pos, (0.5, 0.5, 0.5), player.apperance);
} }
} }