Remove indent from Star:: in StarInput.hpp

This commit is contained in:
Kae 2023-07-12 20:59:23 +10:00
parent e543fe5ef0
commit 2b964a2384

View File

@ -117,11 +117,11 @@ namespace Star {
inline void release() { released = ++releases; held = false; }
};
// Get pointer to the singleton root instance, if it exists. Otherwise,
// Get pointer to the singleton Input instance, if it exists. Otherwise,
// returns nullptr.
static Input* singletonPtr();
// Gets reference to GuiContext singleton, throws GuiContextException if root
// Gets reference to Input singleton, throws InputException if root
// is not initialized.
static Input& singleton();
@ -186,6 +186,7 @@ namespace Star {
KeyMod m_pressedMods;
bool m_textInputActive;
};
}
#endif