16 lines
268 B
C#
16 lines
268 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
|
|
);
|