servicepoint-tanks/TanksServer/Models/Tank.cs
2024-04-07 13:02:49 +02:00

9 lines
252 B
C#

namespace TanksServer.Models;
internal sealed class Tank(Player player, PixelPosition spawnPosition)
{
public Player Owner { get; } = player;
public int Rotation { get; set; }
public PixelPosition Position { get; set; } = spawnPosition;
}