├── .gitignore ├── README.md └── source ├── EXAMPLES ├── Main.hx └── TitleState.hx ├── GJKeys.hx └── GameJolt.hx /.gitignore: -------------------------------------------------------------------------------- 1 | ._* 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TentaRJ/GameJolt-FNF-Integration/HEAD/README.md -------------------------------------------------------------------------------- /source/EXAMPLES/Main.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TentaRJ/GameJolt-FNF-Integration/HEAD/source/EXAMPLES/Main.hx -------------------------------------------------------------------------------- /source/EXAMPLES/TitleState.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TentaRJ/GameJolt-FNF-Integration/HEAD/source/EXAMPLES/TitleState.hx -------------------------------------------------------------------------------- /source/GJKeys.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TentaRJ/GameJolt-FNF-Integration/HEAD/source/GJKeys.hx -------------------------------------------------------------------------------- /source/GameJolt.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TentaRJ/GameJolt-FNF-Integration/HEAD/source/GameJolt.hx --------------------------------------------------------------------------------