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