32 lines
826 B
ActionScript
32 lines
826 B
ActionScript
package com.control.castle.event
|
|
{
|
|
import com.data.data.items.AddSpeed;
|
|
import flash.events.Event;
|
|
|
|
public class CastleWallEvent extends Event
|
|
{
|
|
|
|
public static const WALL_VIEW:String = "WALL_VIEW";
|
|
|
|
public static const WALL_PRODUCTARMY:String = "WALL_PRODUCTARMY";
|
|
|
|
public static const WALL_PRODUCTOVER:String = "WALL_PRODUCTOVER";
|
|
|
|
public static const WALL_ADDSPEED:String = "WALL_ADDSPEED";
|
|
|
|
public static const WALL_CANCEL:String = "WALL_CANCEL";
|
|
|
|
public static const WALL_DISMISS:String = "WALL_DISMISS";
|
|
|
|
public var wallObject:Object;
|
|
|
|
public var addSpeed:AddSpeed;
|
|
|
|
public function CastleWallEvent(param1:String)
|
|
{
|
|
super(param1,true);
|
|
}
|
|
}
|
|
}
|
|
|