Files
crystall-punk-14/Content.Shared/GameTicking/IResettingEntitySystem.cs

10 lines
140 B
C#
Raw Normal View History

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