servicepoint-tanks/TanksServer/Graphics/GamePixelEntityType.cs

10 lines
146 B
C#
Raw Normal View History

2024-04-16 18:28:09 +02:00
namespace TanksServer.Graphics;
internal enum GamePixelEntityType : byte
{
Wall = 0x0,
Tank = 0x1,
2024-04-17 19:34:19 +02:00
Bullet = 0x2,
PowerUp = 0x3
2024-04-16 18:28:09 +02:00
}