mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-02 19:42:05 -04:00
27 lines
673 B
C#
27 lines
673 B
C#
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;
|
|
}
|
|
}
|