21 lines
447 B
ActionScript
21 lines
447 B
ActionScript
package com.control.castle.event
|
|
{
|
|
import flash.events.Event;
|
|
|
|
public class NewCastleEvent extends Event
|
|
{
|
|
|
|
public static const GET_NEW_CASTLE:String = "GET_NEW_CASTLE";
|
|
|
|
public static const BUILD_NEW_CASTLE_OK:String = "BUILD_NEW_CASTLE_OK";
|
|
|
|
public var res:String;
|
|
|
|
public function NewCastleEvent(param1:String)
|
|
{
|
|
super(param1,true);
|
|
}
|
|
}
|
|
}
|
|
|