8 lines
267 B
C#
8 lines
267 B
C#
namespace RPG.GameCore.Level.Objects;
|
|
|
|
public class NamedLevelObjectInfo : LevelObjectInfo
|
|
{
|
|
public string Name { get; set; } = string.Empty; // 0x28
|
|
public float RotY { get; set; } // 0x30
|
|
public string Comment { get; set; } = string.Empty; // 0x38
|
|
}
|