servicepoint-tanks/tanks-backend/TanksServer/Models/IMapEntity.cs
2024-04-21 14:32:29 +02:00

9 lines
139 B
C#

namespace TanksServer.Models;
internal interface IMapEntity
{
FloatPosition Position { get; set; }
PixelBounds Bounds { get; }
}