This commit is contained in:
sidya82
2015-01-14 00:39:12 +01:00
parent 640640cab0
commit bf06106e04
35 changed files with 647 additions and 645 deletions

View File

@@ -1,18 +1,18 @@
from src.m.Placement import Placement
from src.m.Parking import Placement
__author__ = 'sidya'
class Teleporteur:
@classmethod
def teleporterVoiture(self, voiture, place):
p = Placement(voiture, place)
@staticmethod
def teleporterVoiture(voiture, place):
p = Placement(None,voiture, place,None,None)
return p.id
@classmethod
def teleporterVoitureSuperAbonne(self, voiture):
@staticmethod
def teleporterVoitureSuperAbonne(voiture):
pass
@classmethod
def teleporterVersSortie(self, placement):
@staticmethod
def teleporterVersSortie(placement):
placement.end()