forked from hipstercat/giantsd
12 lines
208 B
Python
12 lines
208 B
Python
class Entity:
|
|
def __init__(self):
|
|
self.x = 0
|
|
self.y = 0
|
|
self.z = 0
|
|
self.o = 0
|
|
self.oid = 0
|
|
self._model = 0
|
|
|
|
def model(self):
|
|
return self._model
|