using System; using System.Collections.Generic; namespace Oni.Objects { internal class PatrolPathPoint { public PatrolPathPointType Type; public readonly Dictionary Attributes = new Dictionary(); public PatrolPathPoint(PatrolPathPointType type) { this.Type = type; } } }