Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/api/Points.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/api/Points.py')
-rw-r--r--src/api/Points.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/api/Points.py b/src/api/Points.py
index 872b0cb..0d425c2 100644
--- a/src/api/Points.py
+++ b/src/api/Points.py
@@ -6,8 +6,8 @@ from api.Sprite2 import CSprite
class CPoints(CSprite):
- def __init__(self):
- CSprite.__init__(self)
+ def __init__(self, x = 0, y = 0):
+ CSprite.__init__(self, x , y)
self.mGoods = 0
self.mBads = 0