servicepoint-tanks/TanksServer/Models/IMapEntity.cs
2024-04-11 20:48:21 +02:00

7 lines
139 B
C#

namespace TanksServer.Models;
internal interface IMapEntity
{
FloatPosition Position { get; set; }
double Rotation { get; set; }
}