Files
Gen_Hack-and-Slash-Roguelite/Client/Assets/Scripts/Data/EntityDef.cs

20 lines
379 B
C#

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