Files
tbd-station-14/Content.Shared/GameTicking/IResettingEntitySystem.cs
DrSmugleaf 50bc61b672 Add IResettingEntitySystem for entity systems that do resetting cleanup (#2257)
* Add IResettingEntitySystem for entity systems that do resetting cleanup

* You got a license for that submodule update?
2020-10-14 22:45:53 +02:00

8 lines
122 B
C#

namespace Content.Shared.GameTicking
{
public interface IResettingEntitySystem
{
void Reset();
}
}