60 lines
1.7 KiB
ActionScript
60 lines
1.7 KiB
ActionScript
package com.control.farm.event
|
|
{
|
|
import com.data.data.farm.UserFarmInfo;
|
|
import flash.events.Event;
|
|
|
|
public class UserFarmEvent extends Event
|
|
{
|
|
|
|
public static const SELFFARM:String = "farm_self";
|
|
|
|
public static const PLAYERFARM:String = "farm_player";
|
|
|
|
public static const FARM_enterOtherFarm:String = "FARM_enterOtherFarm";
|
|
|
|
public static const FARM_enterFarm:String = "FARM_enterFarm";
|
|
|
|
public static const FARM_startPlant:String = "FARM_startPlant";
|
|
|
|
public static const FARM_quanzheng:String = "FARM_quanzheng";
|
|
|
|
public static const FARM_lidi:String = "FARM_lidi";
|
|
|
|
public static const FARM_zhengshou:String = "FARM_zhengshou";
|
|
|
|
public static const FARM_qiangzheng:String = "FARM_qiangzheng";
|
|
|
|
public static const FARM_steal:String = "FARM_steal";
|
|
|
|
public static const FARM_stealAll:String = "FARM_stealAll";
|
|
|
|
public static const FARM_getFriendInfo:String = "FARM_getFriendInfo";
|
|
|
|
public static const FARM_getMessList:String = "FARM_getMessList";
|
|
|
|
public static const FARM_harvestFarmTree:String = "FARM_harvestFarmTree";
|
|
|
|
public static const FARM_waterFarmTree:String = "FARM_waterFarmTree";
|
|
|
|
public var userFarmInfo:UserFarmInfo;
|
|
|
|
public var farmData:Object;
|
|
|
|
public var list:Array;
|
|
|
|
public var result:int;
|
|
|
|
public var msg:String;
|
|
|
|
public var posX:int;
|
|
|
|
public var posY:int;
|
|
|
|
public function UserFarmEvent(param1:String)
|
|
{
|
|
super(param1,true);
|
|
}
|
|
}
|
|
}
|
|
|