├── .gitignore ├── .gitmodules ├── LICENSE ├── Lynput.lua ├── MANUAL.md ├── README.md ├── main.lua ├── res ├── axes.png ├── logo.png ├── mouse.png └── xbox_360_controller.png └── run.sh /.gitignore: -------------------------------------------------------------------------------- 1 | *~* 2 | *#* 3 | *.love -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lydzje/lynput/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lydzje/lynput/HEAD/LICENSE -------------------------------------------------------------------------------- /Lynput.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lydzje/lynput/HEAD/Lynput.lua -------------------------------------------------------------------------------- /MANUAL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lydzje/lynput/HEAD/MANUAL.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lydzje/lynput/HEAD/README.md -------------------------------------------------------------------------------- /main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lydzje/lynput/HEAD/main.lua -------------------------------------------------------------------------------- /res/axes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lydzje/lynput/HEAD/res/axes.png -------------------------------------------------------------------------------- /res/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lydzje/lynput/HEAD/res/logo.png -------------------------------------------------------------------------------- /res/mouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lydzje/lynput/HEAD/res/mouse.png -------------------------------------------------------------------------------- /res/xbox_360_controller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lydzje/lynput/HEAD/res/xbox_360_controller.png -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lydzje/lynput/HEAD/run.sh --------------------------------------------------------------------------------