1
Fork 0
mirror of https://bitbucket.org/Ioncannon/project-meteor-server.git synced 2025-04-25 06:07:46 +00:00
project-meteor-server/FFXIVClassic Map Server/actors/chara/ParameterSave.cs

27 lines
673 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FFXIVClassic_Map_Server.dataobjects.chara
{
class ParameterSave
{
public short[] hp = new short[1];
public short[] hpMax = new short[1];
public short mp;
public short mpMax;
public byte[] state_mainSkill = new byte[4];
public ushort state_mainSkillLevel;
public int[] state_boostPointForSkill;
public bool[] commandSlot_compatibility = new bool[40];
public uint[] commandSlot_recastTime = new uint[40];
public int[] giftCommandSlot_commandId;
}
}