Files
tbd-station-14/Content.Server/GameTicking/GameRule.cs
Pieter-Jan Briers 90620db5f8 Adds shoddy death match system.
It barely even works but oh well.
2019-05-08 09:55:36 +02:00

19 lines
251 B
C#

using JetBrains.Annotations;
namespace Content.Server.GameTicking
{
[PublicAPI]
public abstract class GameRule
{
public virtual void Added()
{
}
public virtual void Removed()
{
}
}
}