// // EntityState.cs // // Copyright (c) František Boháček. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. namespace NosSmooth.Extensions.Pathfinding; /// /// A state, position of an entity. /// internal class EntityState { /// /// Gets id of the entity. /// internal long Id { get; init; } /// /// Gets or sets the x coordinate of the entity. /// internal short X { get; set; } /// /// Gets or sets the y coordinate of the entity. /// internal short Y { get; set; } }