servicepoint-tanks/tanks-backend/TanksServer/Graphics/GamePixel.cs
2024-04-21 14:32:29 +02:00

15 lines
260 B
C#

namespace TanksServer.Graphics;
internal sealed class GamePixel
{
public Player? BelongsTo { get; set; }
public GamePixelEntityType? EntityType { get; set; }
public void Clear()
{
BelongsTo = null;
EntityType = null;
}
}