23 lines
479 B
ActionScript
23 lines
479 B
ActionScript
package com.control.castle.event
|
|
{
|
|
import flash.events.Event;
|
|
|
|
public class AlartEvent extends Event
|
|
{
|
|
|
|
public static const GET_ALART_INFO:String = "GET_ALART_INFO";
|
|
|
|
public static const GET_ALART_CHANGE:String = "GET_ALART_CHANGE";
|
|
|
|
public var alartObject:Object;
|
|
|
|
public var msg:String;
|
|
|
|
public function AlartEvent(param1:String)
|
|
{
|
|
super(param1,true);
|
|
}
|
|
}
|
|
}
|
|
|