* Fix Finish and update submodule Comments code, changes network messages FIXES THE USE INTERACTION SO YOU CAN ACTUALLY ACTIVATE THINGS NOW Need engine commits We'll figure out what to do about this shit later eh mates? Maybe have a script in the build process that automatically moves them over to godot/scenes Changes some prototypes and fixes stuff Fixes some more bugs, makes storage values show up properly Part 3 Part 2 Storage Take 1 * Doneso
14 lines
411 B
C#
14 lines
411 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;
|
|
}
|
|
}
|