9 lines
277 B
Python
9 lines
277 B
Python
from entity import Entity
|
|
|
|
player = Entity(char="@", color=(255, 255, 255), name="Player", walkable=False)
|
|
|
|
#gobbos
|
|
gobbo = Entity(char="g", color=(30, 168, 41), name="Gobbo", walkable=False)
|
|
gobbo_red = Entity(char="g", color=(168, 41, 30), name="Red Gobbo", walkable=False)
|
|
|