From 9c00ad5d251b1505b212c835fa025762049199c4 Mon Sep 17 00:00:00 2001 From: Syntriax Date: Sat, 18 Oct 2025 11:16:56 +0300 Subject: [PATCH] chore: fixed indentation error --- Platforms/Desktop/DesktopInputs.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Platforms/Desktop/DesktopInputs.cs b/Platforms/Desktop/DesktopInputs.cs index 830bfbc..41c1ffb 100644 --- a/Platforms/Desktop/DesktopInputs.cs +++ b/Platforms/Desktop/DesktopInputs.cs @@ -21,8 +21,8 @@ public class DesktopInputs : BehaviourBase, IEnterUniverse, IExitUniverse, IGame private readonly Dictionary keyMappingReversed = []; private readonly Dictionary keyMapping = new() { - { Keys.Space, IGameInputs.Button.Interact } -}; + { Keys.Space, IGameInputs.Button.Interact } + }; private KeyboardInputs keyboardInputs = null!;