* Bully the fuck out of inventory shit Inventory Stuff Inventories technically work It works technicaly speaking Yeah this part too Lets do it! Inventories completed Motherfucker * Remove unnecessary usings and fix one thing * Submodule update * Adds a bunch of various clothing prototypes for each current inventory slot
15 lines
455 B
C#
15 lines
455 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 DOOR = 1004;
|
|
public const uint STORAGE = 1005;
|
|
public const uint INVENTORY = 1006;
|
|
}
|
|
}
|