14 lines
270 B
C#
14 lines
270 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;
|
|||
|
}
|
|||
|
}
|