summaryrefslogtreecommitdiffstats
path: root/Object.py
blob: d10d2222e40b5ac124241fa1dc6c407f21368ca0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from Setup import *


class Object:

    def __init__(self, pos):
        self.position = pg.Vector2(pos)
        self.width,self.height = 0,0

    def update(self, delta):
        pass

    def draw(self, surf):
        pass