From a137661e17e0bdbde9bb2637e7221e9919e85d6c Mon Sep 17 00:00:00 2001 From: moonheart08 Date: Thu, 8 Oct 2020 23:13:07 -0500 Subject: [PATCH] rm silly console write, add ContentKeyFunctions real quick. --- Content.Shared/EntryPoint.cs | 1 - Content.Shared/Input/ContentKeyFunctions.cs | 11 +++++++++++ 2 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 Content.Shared/Input/ContentKeyFunctions.cs diff --git a/Content.Shared/EntryPoint.cs b/Content.Shared/EntryPoint.cs index b4f1cc0..a71ed6f 100644 --- a/Content.Shared/EntryPoint.cs +++ b/Content.Shared/EntryPoint.cs @@ -19,7 +19,6 @@ namespace Content.Shared public override void PreInit() { - Console.WriteLine("BLUH"); IoCManager.InjectDependencies(this); var textMacroFactory = IoCManager.Resolve(); textMacroFactory.DoAutoRegistrations(); diff --git a/Content.Shared/Input/ContentKeyFunctions.cs b/Content.Shared/Input/ContentKeyFunctions.cs new file mode 100644 index 0000000..2367761 --- /dev/null +++ b/Content.Shared/Input/ContentKeyFunctions.cs @@ -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"; + } +} \ No newline at end of file