servicepoint-tanks/tanks-backend/TanksServer/Models/PlayerInfo.cs
2024-05-06 00:33:49 +02:00

17 lines
293 B
C#

namespace TanksServer.Models;
internal record struct TankInfo(
int Orientation,
string Magazine,
PixelPosition Position,
bool Moving
);
internal record struct PlayerInfo(
string Name,
Scores Scores,
string Controls,
TankInfo? Tank,
int OpenConnections
);