2015-12-04 02:00:05 -05:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace FFXIVClassic_Map_Server.dataobjects.chara
|
|
|
|
|
{
|
|
|
|
|
class ParameterSave
|
|
|
|
|
{
|
2016-01-10 13:36:36 -05:00
|
|
|
|
public short[] hp = new short[1];
|
|
|
|
|
public short[] hpMax = new short[1];
|
|
|
|
|
public short mp;
|
|
|
|
|
public short mpMax;
|
2015-12-04 02:00:05 -05:00
|
|
|
|
|
2016-01-10 13:36:36 -05:00
|
|
|
|
public byte[] state_mainSkill = new byte[4];
|
|
|
|
|
public ushort state_mainSkillLevel;
|
2015-12-04 02:00:05 -05:00
|
|
|
|
|
|
|
|
|
public int[] state_boostPointForSkill;
|
|
|
|
|
|
2016-01-10 13:36:36 -05:00
|
|
|
|
public bool[] commandSlot_compatibility = new bool[40];
|
2016-01-09 23:22:10 -05:00
|
|
|
|
public uint[] commandSlot_recastTime = new uint[40];
|
2015-12-04 02:00:05 -05:00
|
|
|
|
|
|
|
|
|
public int[] giftCommandSlot_commandId;
|
|
|
|
|
}
|
|
|
|
|
}
|