* Add IResettingEntitySystem for entity systems that do resetting cleanup * You got a license for that submodule update?
8 lines
122 B
C#
8 lines
122 B
C#
namespace Content.Shared.GameTicking
|
|
{
|
|
public interface IResettingEntitySystem
|
|
{
|
|
void Reset();
|
|
}
|
|
}
|