servicepoint-tanks/TanksServer/Graphics/GamePixel.cs
2024-04-16 18:28:09 +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;
}
}