Files
Gen_Hack-and-Slash-Roguelite/Client/Assets/Scripts/Data/EntityDef.cs
2025-08-28 16:20:24 +08:00

17 lines
255 B
C#

namespace Data
{
public class EntityDef : Define
{
public AttributesDef attributes = new();
public DrawingOrderDef drawingOrder;
public BehaviorTreeDef behaviorTree;
public AffiliationDef affiliation;
}
}