home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mobiclic 151
/
MOBICLIC151.ISO
/
mac
/
DATA
/
BLA151
/
BLA151_02
/
BLA151_02.swf
/
scripts
/
BLA_02.as
Wrap
Text File
|
2013-01-17
|
784b
|
39 lines
package
{
import bla_02.CapsuleAlgo;
import com.milanpresse.capsule.GameEngineCapsule;
public class BLA_02 extends GameEngineCapsule
{
private var algo:CapsuleAlgo = null;
public function BLA_02()
{
super();
}
override public function start(itemParams:Object = null) : void
{
this.algo = new CapsuleAlgo(engine);
}
override public function destroy() : void
{
this.algo.destroy();
super.destroy();
}
override public function sleep() : void
{
this.algo.sleep();
}
override public function wake() : void
{
this.algo.wake();
}
}
}