servicepoint-tanks/TanksServer/Models/Bullet.cs
2024-04-11 20:48:21 +02:00

10 lines
303 B
C#

namespace TanksServer.Models;
internal sealed class Bullet(Player tankOwner, FloatPosition position, double rotation): IMapEntity
{
public Player Owner { get; } = tankOwner;
public FloatPosition Position { get; set; } = position;
public double Rotation { get; set; } = rotation;
}