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

16 lines
367 B
C#
Raw Normal View History

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