14 lines
296 B
Python
14 lines
296 B
Python
class Entity:
|
|
"""
|
|
Generic object to represent players, enemies, items, etc.
|
|
"""
|
|
|
|
def __init__(self, x, y, char, color):
|
|
self.x = x
|
|
self.y = y
|
|
self.char = char
|
|
self.color = color
|
|
|
|
def move(self, dx, dy):
|
|
self.x += dx
|
|
self.y += dy |