16 lines
286 B
C#
16 lines
286 B
C#
namespace TanksServer.Models;
|
|
|
|
internal sealed record class TankInfo(
|
|
int Orientation,
|
|
byte ExplosiveBullets,
|
|
PixelPosition Position,
|
|
bool Moving
|
|
);
|
|
|
|
internal sealed record class PlayerInfo(
|
|
string Name,
|
|
Scores Scores,
|
|
string Controls,
|
|
TankInfo? Tank
|
|
);
|