37 lines
962 B
ActionScript
37 lines
962 B
ActionScript
package com.control.castle.event
|
|
{
|
|
import flash.events.Event;
|
|
|
|
public class StrategyEvent extends Event
|
|
{
|
|
|
|
public static const Strategy_ALL:String = "Strategy_ALL";
|
|
|
|
public static const Strategy_By_Id:String = "Strategy_By_Id";
|
|
|
|
public static const Strategy_Up:String = "Strategy_Up";
|
|
|
|
public static const Strategy_UseJunShi:String = "Strategy_UseJunShi";
|
|
|
|
public static const Strategy_addSpeedJunShi:String = "Strategy_addSpeedJunShi";
|
|
|
|
public static const Strategy_AddSpeed:String = "Strategy_AddSpeed";
|
|
|
|
public static const Strategy_Ups:String = "Strategy_Ups";
|
|
|
|
public var strategyArr:Array;
|
|
|
|
public var strategyObj:Object;
|
|
|
|
public var result:int;
|
|
|
|
public var msg:String;
|
|
|
|
public function StrategyEvent(param1:String)
|
|
{
|
|
super(param1);
|
|
}
|
|
}
|
|
}
|
|
|