23 lines
416 B
C#
Executable File
23 lines
416 B
C#
Executable File
using System.Collections.Generic;
|
|
using System.Linq.Expressions;
|
|
|
|
namespace ET
|
|
{
|
|
public struct AoiInfo
|
|
{
|
|
public HashSet<long> MovesSet;
|
|
|
|
public HashSet<long> MoveOnlySet;
|
|
|
|
public HashSet<long> EntersSet;
|
|
|
|
public HashSet<long> LeavesSet;
|
|
}
|
|
|
|
public struct AoiLink
|
|
{
|
|
public LinkedListNode<AoiNode> XNode;
|
|
|
|
public LinkedListNode<AoiNode> YNode;
|
|
}
|
|
} |