├── .appveyor.yml ├── .clang-format ├── .gitignore ├── .travis.yml ├── CMakeLists.txt ├── LICENSE ├── README.md ├── Test ├── CMakeLists.txt └── main.cpp ├── include ├── InputManager.h └── Input_Lite.h └── src ├── CMakeLists.txt ├── InputManager.cpp ├── Input_Lite.cpp ├── ios └── Input.cpp ├── linux └── Input.cpp └── windows └── Input.cpp /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/input_lite/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/input_lite/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/input_lite/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/input_lite/HEAD/.travis.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/input_lite/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/input_lite/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/input_lite/HEAD/README.md -------------------------------------------------------------------------------- /Test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/input_lite/HEAD/Test/CMakeLists.txt -------------------------------------------------------------------------------- /Test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/input_lite/HEAD/Test/main.cpp -------------------------------------------------------------------------------- /include/InputManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/input_lite/HEAD/include/InputManager.h -------------------------------------------------------------------------------- /include/Input_Lite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/input_lite/HEAD/include/Input_Lite.h -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/input_lite/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/InputManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/input_lite/HEAD/src/InputManager.cpp -------------------------------------------------------------------------------- /src/Input_Lite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/input_lite/HEAD/src/Input_Lite.cpp -------------------------------------------------------------------------------- /src/ios/Input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/input_lite/HEAD/src/ios/Input.cpp -------------------------------------------------------------------------------- /src/linux/Input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/input_lite/HEAD/src/linux/Input.cpp -------------------------------------------------------------------------------- /src/windows/Input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/input_lite/HEAD/src/windows/Input.cpp --------------------------------------------------------------------------------