Update submodule

This commit is contained in:
Pieter-Jan Briers
2019-05-08 09:55:00 +02:00
parent 41b5c4dba2
commit a014b40972
4 changed files with 33 additions and 1 deletions

View File

@@ -0,0 +1,18 @@
using Content.Server.GameTicking.GameRules;
using Content.Server.Interfaces.GameTicking;
using Robust.Shared.IoC;
namespace Content.Server.GameTicking.GamePresets
{
public sealed class PresetDeathMatch : GamePreset
{
#pragma warning disable 649
[Dependency] private readonly IGameTicker _gameTicker;
#pragma warning restore 649
public override void Start()
{
_gameTicker.AddGameRule<RuleDeathMatch>();
}
}
}

View File

@@ -0,0 +1,7 @@
namespace Content.Server.GameTicking
{
public class GameRule
{
}
}

View File

@@ -0,0 +1,7 @@
namespace Content.Server.GameTicking.GameRules
{
public class DeathMatch
{
}
}