Snowflake/RPG.GameCore/Level/Objects/LevelObjectInfo.cs

10 lines
295 B
C#

namespace RPG.GameCore.Level.Objects;
public class LevelObjectInfo
{
public uint ID { get; set; } // 0x10
public float PosX { get; set; } // 0x14
public float PosY { get; set; } // 0x18
public float PosZ { get; set; } // 0x1C
public bool IsDelete { get; set; } // 0x20
}