using System; using System.Linq; using AI; using Base; using Data; using UnityEngine; namespace Entity { public class Character : Entity { public CharacterDef characterDef; private void Start() { aiTree = new RandomWander(); attributes = new AttributesDef(); } public void Init() { if (characterDef == null) return; } } }