:squirrel: Main character is a squirrel
This commit is contained in:
parent
cae7ab3beb
commit
795623e1c9
|
@ -13,7 +13,7 @@ def proof_of_concept() -> None:
|
||||||
stdscr.refresh()
|
stdscr.refresh()
|
||||||
|
|
||||||
cur = [1, 6] # (y,x)
|
cur = [1, 6] # (y,x)
|
||||||
stdscr.addstr(1, 6, '@')
|
stdscr.addstr(1, 6, '🐿️')
|
||||||
stdscr.refresh()
|
stdscr.refresh()
|
||||||
|
|
||||||
while True:
|
while True:
|
||||||
|
@ -33,4 +33,4 @@ def proof_of_concept() -> None:
|
||||||
if cur[1] < m.width and \
|
if cur[1] < m.width and \
|
||||||
m.tiles[cur[0]][cur[1] + 1].value != '#':
|
m.tiles[cur[0]][cur[1] + 1].value != '#':
|
||||||
cur[1] = cur[1] + 1
|
cur[1] = cur[1] + 1
|
||||||
stdscr.addstr(cur[0], cur[1], '@')
|
stdscr.addstr(cur[0], cur[1], '🐿️')
|
||||||
|
|
Loading…
Reference in New Issue