:squirrel: Main character is a squirrel

This commit is contained in:
Yohann D'ANELLO 2020-10-16 17:15:17 +02:00
parent cae7ab3beb
commit 795623e1c9
1 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@ def proof_of_concept() -> None:
stdscr.refresh()
cur = [1, 6] # (y,x)
stdscr.addstr(1, 6, '@')
stdscr.addstr(1, 6, '🐿️')
stdscr.refresh()
while True:
@ -33,4 +33,4 @@ def proof_of_concept() -> None:
if cur[1] < m.width and \
m.tiles[cur[0]][cur[1] + 1].value != '#':
cur[1] = cur[1] + 1
stdscr.addstr(cur[0], cur[1], '@')
stdscr.addstr(cur[0], cur[1], '🐿️')