├── .gitattributes ├── .github └── workflows │ └── build.yml ├── .gitignore ├── CMakeLists.txt ├── README.md ├── about.md ├── buttonCoordinates ├── 2019.jpeg ├── getButtonPositions.js └── getButtonPositions_2.1.js ├── changelog.md ├── logo.png ├── mod.json ├── resources └── reference.png └── src └── main.cpp /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDColon/gd-in-2019/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDColon/gd-in-2019/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | **/build 2 | **/.vscode -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDColon/gd-in-2019/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDColon/gd-in-2019/HEAD/README.md -------------------------------------------------------------------------------- /about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDColon/gd-in-2019/HEAD/about.md -------------------------------------------------------------------------------- /buttonCoordinates/2019.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDColon/gd-in-2019/HEAD/buttonCoordinates/2019.jpeg -------------------------------------------------------------------------------- /buttonCoordinates/getButtonPositions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDColon/gd-in-2019/HEAD/buttonCoordinates/getButtonPositions.js -------------------------------------------------------------------------------- /buttonCoordinates/getButtonPositions_2.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDColon/gd-in-2019/HEAD/buttonCoordinates/getButtonPositions_2.1.js -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDColon/gd-in-2019/HEAD/changelog.md -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDColon/gd-in-2019/HEAD/logo.png -------------------------------------------------------------------------------- /mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDColon/gd-in-2019/HEAD/mod.json -------------------------------------------------------------------------------- /resources/reference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDColon/gd-in-2019/HEAD/resources/reference.png -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDColon/gd-in-2019/HEAD/src/main.cpp --------------------------------------------------------------------------------