11 lines
296 B
C#
11 lines
296 B
C#
![]() |
namespace TanksServer.Models;
|
||
|
|
||
|
internal sealed class Bullet(Player tankOwner, FloatPosition position, double rotation)
|
||
|
{
|
||
|
public Player TankOwner { get; } = tankOwner;
|
||
|
|
||
|
public FloatPosition Position { get; set; } = position;
|
||
|
|
||
|
public double Rotation { get; set; } = rotation;
|
||
|
}
|