forked from SpaceStation14-Shenanigans/Monolith
90620db5f8
It barely even works but oh well.
19 lines
251 B
C#
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()
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|