mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-06 17:58:05 +02:00
19 lines
592 B
C#
19 lines
592 B
C#
namespace Robust.Shared.GameObjects
|
|
{
|
|
public static class NetIDs
|
|
{
|
|
public const uint MAP_MAP = 1;
|
|
public const uint MAP_GRID = 2;
|
|
public const uint META_DATA = 4;
|
|
public const uint TRANSFORM = 5;
|
|
public const uint PHYSICS = 6;
|
|
public const uint SPRITE = 8;
|
|
public const uint POINT_LIGHT = 10;
|
|
public const uint COLLIDABLE = 12;
|
|
public const uint CLICKABLE = 14;
|
|
public const uint APPEARANCE = 22;
|
|
public const uint USERINTERFACE = 24;
|
|
public const uint CONTAINER_MANAGER = 25;
|
|
}
|
|
}
|