Ejemplo n.º 1
0
 public Mob()
 {
     m_room_key = new RoomKey();
     m_mob_id   = -1;
     m_position = new Point3d();
     m_angle    = 0f;
     m_mob_type = null;
     m_health   = 0;
     m_energy   = 0;
     m_ai_data  = null;
 }
Ejemplo n.º 2
0
 public Mob()
 {
     m_room_key = new RoomKey();
     m_mob_id= -1;
     m_position = new Point3d();
     m_angle = 0f;
     m_mob_type = null;
     m_health= 0;
     m_energy= 0;
     m_ai_data = null;
 }
Ejemplo n.º 3
0
        public static MobAIState ParseJsonAIData(string json_ai_data)
        {
            MobAIState ai_data = null;

            if (json_ai_data.Length > 0)
            {
                ai_data = JsonMapper.ToObject <MobAIState>(json_ai_data);
            }

            return(ai_data);
        }
Ejemplo n.º 4
0
 public static string SerializeAIData(MobAIState ai_state)
 {
     return(JsonMapper.ToJson(ai_state));
 }
Ejemplo n.º 5
0
 public static string SerializeAIData(MobAIState ai_state)
 {
     return JsonMapper.ToJson(ai_state);
 }