I got the numbers to show up! Now I just need to

add flag functionality and I think we're good?
This commit is contained in:
Cory
2024-05-19 00:52:09 -04:00
parent f0e166d6bd
commit 75618c1de1
7 changed files with 67 additions and 7 deletions

View File

@@ -5,6 +5,7 @@
class Cursor:
name = "cursor"
character = 'O'
revealed = True
def __init__(self, position):
self.position = position
@@ -24,4 +25,5 @@ class Cursor:
if game.on_board(new_position):
if game.is_empty(new_position):
self.position = new_position
game.log("The cursor is at " + str(self.position))
game.log("The cursor is at " + str(self.position))