zxl
/
CTT
forked from Cal/CTT
1
0
Fork 0
CTT/Server/Model/Game/Entity/AI/AIComponent.cs

15 lines
326 B
C#

using System;
using System.Collections.Generic;
namespace ET
{
public class AIComponent:Entity
{
public List<AINode> aiLists = new();
public AINode current;
public ETCancellationToken cancelToken;
public long TimerId;
public Dictionary<string, object> aiData=new();
}
}