├── .gitattributes ├── .gitignore ├── BUILD.bat ├── GD Hax.sln ├── GD Hax ├── GD Hax.vcxproj ├── GD Hax.vcxproj.filters ├── GDExploits.cpp ├── GDExploits.hpp ├── Macros.hpp ├── main.cpp └── memory.hpp ├── README.md └── media ├── showcase.mp4 └── thumbnail.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nico-Posada/Geometry-Dash-2.2-Stat-Editor/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nico-Posada/Geometry-Dash-2.2-Stat-Editor/HEAD/.gitignore -------------------------------------------------------------------------------- /BUILD.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nico-Posada/Geometry-Dash-2.2-Stat-Editor/HEAD/BUILD.bat -------------------------------------------------------------------------------- /GD Hax.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nico-Posada/Geometry-Dash-2.2-Stat-Editor/HEAD/GD Hax.sln -------------------------------------------------------------------------------- /GD Hax/GD Hax.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nico-Posada/Geometry-Dash-2.2-Stat-Editor/HEAD/GD Hax/GD Hax.vcxproj -------------------------------------------------------------------------------- /GD Hax/GD Hax.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nico-Posada/Geometry-Dash-2.2-Stat-Editor/HEAD/GD Hax/GD Hax.vcxproj.filters -------------------------------------------------------------------------------- /GD Hax/GDExploits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nico-Posada/Geometry-Dash-2.2-Stat-Editor/HEAD/GD Hax/GDExploits.cpp -------------------------------------------------------------------------------- /GD Hax/GDExploits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nico-Posada/Geometry-Dash-2.2-Stat-Editor/HEAD/GD Hax/GDExploits.hpp -------------------------------------------------------------------------------- /GD Hax/Macros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nico-Posada/Geometry-Dash-2.2-Stat-Editor/HEAD/GD Hax/Macros.hpp -------------------------------------------------------------------------------- /GD Hax/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nico-Posada/Geometry-Dash-2.2-Stat-Editor/HEAD/GD Hax/main.cpp -------------------------------------------------------------------------------- /GD Hax/memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nico-Posada/Geometry-Dash-2.2-Stat-Editor/HEAD/GD Hax/memory.hpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nico-Posada/Geometry-Dash-2.2-Stat-Editor/HEAD/README.md -------------------------------------------------------------------------------- /media/showcase.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nico-Posada/Geometry-Dash-2.2-Stat-Editor/HEAD/media/showcase.mp4 -------------------------------------------------------------------------------- /media/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nico-Posada/Geometry-Dash-2.2-Stat-Editor/HEAD/media/thumbnail.png --------------------------------------------------------------------------------