This commit is contained in:
sidya82
2015-01-12 16:36:26 +01:00
parent 1b34dd5c6a
commit 140b1bfe01
13 changed files with 50 additions and 116 deletions

View File

@@ -1,4 +1,4 @@
from src.m.Place import Placement
from src.m.Placement import Placement
__author__ = 'sidya'
@@ -6,7 +6,7 @@ __author__ = 'sidya'
class Teleporteur:
@classmethod
def teleporterVoiture(self, voiture, place):
p =Placement(voiture, place)
p = Placement(voiture, place)
return p.id
@classmethod