rm silly console write, add ContentKeyFunctions real quick.

This commit is contained in:
moonheart08 2020-10-08 23:13:07 -05:00
parent 4392b4ceab
commit a137661e17
2 changed files with 11 additions and 1 deletions

View file

@ -19,7 +19,6 @@ namespace Content.Shared
public override void PreInit() public override void PreInit()
{ {
Console.WriteLine("BLUH");
IoCManager.InjectDependencies(this); IoCManager.InjectDependencies(this);
var textMacroFactory = IoCManager.Resolve<ITextMacroFactory>(); var textMacroFactory = IoCManager.Resolve<ITextMacroFactory>();
textMacroFactory.DoAutoRegistrations(); textMacroFactory.DoAutoRegistrations();

View file

@ -0,0 +1,11 @@
using Robust.Shared.Input;
namespace Content.Shared.Input
{
[KeyFunctions]
public static class ContentKeyFunctions
{
// DEVNOTE: Stick keys you want to be bindable here.
// public static readonly DummyKey = "DummyKey";
}
}