mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-18 05:59:03 +03:00
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()
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|