9 lines
127 B
C#
9 lines
127 B
C#
![]() |
namespace TanksServer.Graphics;
|
||
|
|
||
|
internal enum GamePixelEntityType : byte
|
||
|
{
|
||
|
Wall = 0x0,
|
||
|
Tank = 0x1,
|
||
|
Bullet = 0x2
|
||
|
}
|