24 lines
491 B
ActionScript
24 lines
491 B
ActionScript
package com.control.battle.event
|
|
{
|
|
import com.data.data.battleview.Fight;
|
|
import flash.events.Event;
|
|
|
|
public class BattleViewEvent extends Event
|
|
{
|
|
|
|
public static const BATTLE_VIEW_BYFIGHTID:String = "BATTLE_VIEW_BYFIGHTID";
|
|
|
|
public var fight:Fight;
|
|
|
|
public var result:int;
|
|
|
|
public var msg:String;
|
|
|
|
public function BattleViewEvent(param1:String)
|
|
{
|
|
super(param1);
|
|
}
|
|
}
|
|
}
|
|
|