another color for other tanks

This commit is contained in:
Vinzenz Schroeter 2024-04-16 18:28:09 +02:00
parent 4af51b3e51
commit a0a0762f84
4 changed files with 55 additions and 34 deletions

View file

@ -12,10 +12,3 @@ internal sealed class GamePixel
EntityType = null;
}
}
internal enum GamePixelEntityType : byte
{
Wall = 0x0,
Tank = 0x1,
Bullet = 0x2
}

View file

@ -0,0 +1,8 @@
namespace TanksServer.Graphics;
internal enum GamePixelEntityType : byte
{
Wall = 0x0,
Tank = 0x1,
Bullet = 0x2
}