Files
Gen_Hack-and-Slash-Roguelite/Client/Assets/Scripts/Data/EntityDef.cs
2025-08-17 11:16:55 +08:00

22 lines
339 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Xml.Linq;
namespace Data
{
public class EntityDef : Define
{
public AttributesDef attributes;
public DrawingOrderDef drawingOrder;
public BehaviorTreeDef behaviorTree;
public string affiliation;
}
}