Urist's damage and health thing. (#10)
* Add prototype for temperature testing entity. * Add Damageable, Destructible, Temperature. Add a prototype based on those. * Works and cleaned up. * Nerf
This commit is contained in:
committed by
GitHub
parent
7597cd9172
commit
6f89d0672d
11
Content.Shared/GameObjects/ContentNetIDs.cs
Normal file
11
Content.Shared/GameObjects/ContentNetIDs.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user