Files
Gen_Hack-and-Slash-Roguelite/Client/Assets/Scripts/Data/EntityDef.cs
2025-08-27 19:08:27 +08:00

22 lines
346 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Xml.Linq;
namespace Data
{
public class EntityDef : Define
{
public AttributesDef attributes = new();
public DrawingOrderDef drawingOrder;
public BehaviorTreeDef behaviorTree;
public AffiliationDef affiliation;
}
}