Files
Gen_Hack-and-Slash-Roguelit…/Client/Assets/Scripts/Data/EntityDef.cs
2025-09-03 19:57:08 +08:00

18 lines
345 B
C#

namespace Data
{
public class EntityDef : Define
{
public AttributesDef attributes = new();
public DrawingOrderDef drawingOrder;
public BehaviorTreeDef behaviorTree;
public AffiliationDef affiliation;
public DrawNodeDef deathAnimation;
public EventDef[] deathEffects;
}
}