17 lines
293 B
C#
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
|
|
);
|