9 lines
257 B
C#
9 lines
257 B
C#
|
namespace RPG.GameCore.Level.AI;
|
|||
|
|
|||
|
public class AIConfigInfo
|
|||
|
{
|
|||
|
public string AIFile { get; set; } = string.Empty; // 0x10
|
|||
|
public AIPathwayInfo[] PathwayList { get; set; } = []; // 0x18
|
|||
|
public uint DefaultAIPathwayIndex { get; set; } // 0x20
|
|||
|
}
|