Co-authored-by: m0_75251201 <m0_75251201@noreply.gitcode.com> Reviewed-on: Roguelite-Game-Developing-Team/Gen_Hack-and-Slash-Roguelite#55
18 lines
345 B
C#
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;
|
|
}
|
|
|
|
|
|
|
|
|
|
} |