Files
qxzb/flash_decompiled/com/control/castle/event/CastleLevelUpEvent.as
2026-03-01 10:12:57 +08:00

19 lines
367 B
ActionScript

package com.control.castle.event
{
import flash.events.Event;
public class CastleLevelUpEvent extends Event
{
public static const CASTLE_LEVELUP:String = "CASTLE_LEVELUP";
public var cityUrl:String;
public function CastleLevelUpEvent()
{
super(CASTLE_LEVELUP,true);
}
}
}