Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/game/Area1Game1.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/Area1Game1.py')
-rw-r--r--src/game/Area1Game1.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/game/Area1Game1.py b/src/game/Area1Game1.py
index 9db176a..726e3a0 100644
--- a/src/game/Area1Game1.py
+++ b/src/game/Area1Game1.py
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
import pygame
-from api.Sprite import CSprite
+from api.Sprite2 import CSprite
from api.Button import CButton
from api.Points import CPoints
from api.Label import CLabel
@@ -34,6 +34,7 @@ class Piece(CSprite):
RADIUS_COLLISION = 50
+ mState = None
def __init__(self, aParent, aNum, aOrigin, aDestine):
CSprite.__init__(self)
@@ -86,8 +87,6 @@ class Piece(CSprite):
elif (self.mState == STATE_OK):
pass
-
-
def setState(self, aState):
if (aState == STATE_STALE):