using System.Collections.Generic; using System.Linq.Expressions; namespace ET { public struct AoiInfo { public HashSet MovesSet; public HashSet MoveOnlySet; public HashSet EntersSet; public HashSet LeavesSet; } public struct AoiLink { public LinkedListNode XNode; public LinkedListNode YNode; } }