Replace IResettingEntitySystem with RoundRestartCleanupEvent. (#4245)
* Replace IResettingEntitySystem with RoundRestartCleanupEvent. * oops
This commit is contained in:
committed by
GitHub
parent
16e1c2c798
commit
bc7b315b18
@@ -1,9 +0,0 @@
|
||||
#nullable enable
|
||||
|
||||
namespace Content.Shared.GameTicking
|
||||
{
|
||||
public interface IResettingEntitySystem
|
||||
{
|
||||
void Reset();
|
||||
}
|
||||
}
|
||||
13
Content.Shared/GameTicking/RoundRestartCleanupEvent.cs
Normal file
13
Content.Shared/GameTicking/RoundRestartCleanupEvent.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using System;
|
||||
using Robust.Shared.GameObjects;
|
||||
using Robust.Shared.Serialization;
|
||||
|
||||
#nullable enable
|
||||
|
||||
namespace Content.Shared.GameTicking
|
||||
{
|
||||
[Serializable, NetSerializable]
|
||||
public class RoundRestartCleanupEvent : EntityEventArgs
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user