12 lines
286 B
C#
12 lines
286 B
C#
|
|
using JetBrains.Annotations;
|
|||
|
|
using Robust.Shared.GameObjects.Systems;
|
|||
|
|
|
|||
|
|
namespace Content.Shared.GameObjects.EntitySystems
|
|||
|
|
{
|
|||
|
|
[UsedImplicitly]
|
|||
|
|
public class SharedMetabolismSystem : EntitySystem
|
|||
|
|
{
|
|||
|
|
// TODO move metabolism updates here from body entity system
|
|||
|
|
}
|
|||
|
|
}
|