diff --git a/src/inputsystem/inputsystem.cpp b/src/inputsystem/inputsystem.cpp index 68595e63..2ee69a32 100644 --- a/src/inputsystem/inputsystem.cpp +++ b/src/inputsystem/inputsystem.cpp @@ -11,47 +11,6 @@ #include "inputsystem/inputsystem.h" #include -////----------------------------------------------------------------------------- -//// Enables/disables input -////----------------------------------------------------------------------------- -//void CInputSystem::EnableInput(bool bEnabled) -//{ -// const static int index = 10; -// CallVFunc(index, this, bEnabled); -//} -// -////----------------------------------------------------------------------------- -//// Enables/disables the inputsystem windows message pump -////----------------------------------------------------------------------------- -//void CInputSystem::EnableMessagePump(bool bEnabled) -//{ -// const static int index = 11; -// CallVFunc(index, this, bEnabled); -//} -// -////----------------------------------------------------------------------------- -//// Poll current state -////----------------------------------------------------------------------------- -//bool CInputSystem::IsButtonDown(ButtonCode_t Button) -//{ -// const static int index = 13; -// return CallVFunc(index, this, Button); -//} -// -////----------------------------------------------------------------------------- -//// Convert back + forth between ButtonCode/AnalogCode + strings -////----------------------------------------------------------------------------- -//bool CInputSystem::ButtonCodeToString(ButtonCode_t Button) -//{ -// const static int index = 25; -// return CallVFunc(index, this, Button); -//} -//ButtonCode_t CInputSystem::StringToButtonCode(const char* pString) -//{ -// const static int index = 26; -// return CallVFunc(index, this, pString); -//} - //----------------------------------------------------------------------------- // Returns the currently attached window //-----------------------------------------------------------------------------