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

14 lines
270 B
C#
Raw Normal View History

2021-04-09 00:48:56 +08:00
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;
}
}