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