mirror of
https://github.com/ACEmulator/ACE
synced 2026-08-17 12:26:06 -04:00
16 lines
365 B
C#
16 lines
365 B
C#
namespace ACE.Entity
|
|
{
|
|
public class CreateProfile
|
|
{
|
|
public uint ClassID;
|
|
public bool Bound;
|
|
public uint PaletteID;
|
|
public float Shade;
|
|
public float Probability;
|
|
public int Destination;
|
|
public int Regen;
|
|
public ulong StackSize;
|
|
public ulong MaxNum;
|
|
public ulong Amount;
|
|
}
|
|
}
|