* Construction WiP * Construction kinda works! * Lots more construction work. * It mostly works!
16 lines
513 B
C#
16 lines
513 B
C#
namespace Content.Shared.GameObjects
|
|
{
|
|
// Starting from 1000 to avoid crossover with engine.
|
|
public static class ContentNetIDs
|
|
{
|
|
public const uint DAMAGEABLE = 1000;
|
|
public const uint DESTRUCTIBLE = 1001;
|
|
public const uint TEMPERATURE = 1002;
|
|
public const uint HANDS = 1003;
|
|
public const uint STORAGE = 1005;
|
|
public const uint INVENTORY = 1006;
|
|
public const uint POWER_DEBUG_TOOL = 1007;
|
|
public const uint CONSTRUCTOR = 1008;
|
|
}
|
|
}
|