2006-07-22 11:54:27 +02:00
|
|
|
class Actor:
|
|
|
|
|
def __init__(self):
|
|
|
|
|
self._x = 0
|
|
|
|
|
self._y = 0
|
|
|
|
|
self._width = -1
|
|
|
|
|
self._height = -1
|
|
|
|
|
|
|
|
|
|
def set_position(self, x, y):
|
|
|
|
|
self._x = x
|
|
|
|
|
self._y = y
|
|
|
|
|
|
|
|
|
|
def set_size(self, width, height):
|
|
|
|
|
self._width = width
|
|
|
|
|
self._height = height
|
|
|
|
|
|
2006-07-24 11:01:25 +02:00
|
|
|
def render(self, window, transf):
|
2006-07-22 11:54:27 +02:00
|
|
|
pass
|