Go to the documentation of this file.00001 '''
00002 Anoria (c) Gsk 2010
00003 '''
00004
00005 import BigWorld
00006 from Actor import Actor
00007
00008
00009 class Greeter(BigWorld.Base, Actor):
00010
00011 def __init__( self ):
00012 BigWorld.Base.__init__( self )
00013 Actor.__init__(self)
00014
00015
00016
00017
00018
00019 print "Greeter.__init__(): creating CellEntity data=%s" % (self.spawnerCellMb)
00020 self.createCellEntity( self.spawnerCellMb )
00021
00022 def onLoseCell( self ):
00023
00024 self.destroy()
00025