Skip to content

Commit

Permalink
Fix missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
finneyj committed Feb 28, 2024
1 parent 4d1c3a5 commit 02644a0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,13 @@ public static void main(String[] args)
{
GameArena arena = new GameArena(500,400);

StarField f = new StarField(300, 3, arena)
StarField f = new StarField(300, 3, arena);
BigSpaceShip ship = new BigSpaceShip(100, 100, arena, 10);

while(true)
{
f.move();

arena.pause();
}
}
Expand Down

0 comments on commit 02644a0

Please sign in to comment.