Delta-v/Content.Shared/GameObjects/EntitySystems/SharedMetabolismSystem.cs

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
}
}