├── .gitignore ├── LICENSE ├── README.md ├── faxe └── Faxe.hx ├── haxelib.json ├── include.xml ├── lib ├── COPY_YOUR_FMOD_API_HERE ├── Linux │ └── put api here.txt ├── Linux64 │ └── put api here.txt ├── Switch │ └── put api here.txt └── Windows │ └── put api here.txt ├── linc ├── Linc.hx ├── linc_faxe.cpp ├── linc_faxe.h └── linc_faxe.xml ├── test ├── Test.hx └── build.hxml ├── test2 ├── BUILD_SWITCH_DEBUG.bat ├── Cpp.hx ├── FAXE t2.hxml ├── FAXE t2.hxproj ├── Test.hx ├── build.hxml ├── build_nx.hxml └── test.bat └── test3 ├── BUILD_SWITCH_DEBUG.bat ├── BUILD_WIN_DEBUG.bat ├── FAXE t3.hxml ├── FAXE t3.hxproj ├── Snd.hx ├── SndTV.hx ├── Test.hx ├── build.hxml ├── build_nx.hxml ├── hxd ├── Signal.hx └── Stack.hx ├── test.bat ├── toto.txt └── totoErr.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delahee/faxe/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delahee/faxe/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delahee/faxe/HEAD/README.md -------------------------------------------------------------------------------- /faxe/Faxe.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delahee/faxe/HEAD/faxe/Faxe.hx -------------------------------------------------------------------------------- /haxelib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delahee/faxe/HEAD/haxelib.json -------------------------------------------------------------------------------- /include.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delahee/faxe/HEAD/include.xml -------------------------------------------------------------------------------- /lib/COPY_YOUR_FMOD_API_HERE: -------------------------------------------------------------------------------- 1 | in the right platform folder -------------------------------------------------------------------------------- /lib/Linux/put api here.txt: -------------------------------------------------------------------------------- 1 | yes here :) -------------------------------------------------------------------------------- /lib/Linux64/put api here.txt: -------------------------------------------------------------------------------- 1 | yes here :) -------------------------------------------------------------------------------- /lib/Switch/put api here.txt: -------------------------------------------------------------------------------- 1 | yes here :) -------------------------------------------------------------------------------- /lib/Windows/put api here.txt: -------------------------------------------------------------------------------- 1 | yes here :) -------------------------------------------------------------------------------- /linc/Linc.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delahee/faxe/HEAD/linc/Linc.hx -------------------------------------------------------------------------------- /linc/linc_faxe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delahee/faxe/HEAD/linc/linc_faxe.cpp -------------------------------------------------------------------------------- /linc/linc_faxe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delahee/faxe/HEAD/linc/linc_faxe.h -------------------------------------------------------------------------------- /linc/linc_faxe.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delahee/faxe/HEAD/linc/linc_faxe.xml -------------------------------------------------------------------------------- /test/Test.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delahee/faxe/HEAD/test/Test.hx -------------------------------------------------------------------------------- /test/build.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delahee/faxe/HEAD/test/build.hxml -------------------------------------------------------------------------------- /test2/BUILD_SWITCH_DEBUG.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delahee/faxe/HEAD/test2/BUILD_SWITCH_DEBUG.bat -------------------------------------------------------------------------------- /test2/Cpp.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delahee/faxe/HEAD/test2/Cpp.hx -------------------------------------------------------------------------------- /test2/FAXE t2.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delahee/faxe/HEAD/test2/FAXE t2.hxml -------------------------------------------------------------------------------- /test2/FAXE t2.hxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delahee/faxe/HEAD/test2/FAXE t2.hxproj -------------------------------------------------------------------------------- /test2/Test.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delahee/faxe/HEAD/test2/Test.hx -------------------------------------------------------------------------------- /test2/build.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delahee/faxe/HEAD/test2/build.hxml -------------------------------------------------------------------------------- /test2/build_nx.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delahee/faxe/HEAD/test2/build_nx.hxml -------------------------------------------------------------------------------- /test2/test.bat: -------------------------------------------------------------------------------- 1 | cd cpp 2 | CALL Test-debug.exe -------------------------------------------------------------------------------- /test3/BUILD_SWITCH_DEBUG.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delahee/faxe/HEAD/test3/BUILD_SWITCH_DEBUG.bat -------------------------------------------------------------------------------- /test3/BUILD_WIN_DEBUG.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delahee/faxe/HEAD/test3/BUILD_WIN_DEBUG.bat -------------------------------------------------------------------------------- /test3/FAXE t3.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delahee/faxe/HEAD/test3/FAXE t3.hxml -------------------------------------------------------------------------------- /test3/FAXE t3.hxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delahee/faxe/HEAD/test3/FAXE t3.hxproj -------------------------------------------------------------------------------- /test3/Snd.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delahee/faxe/HEAD/test3/Snd.hx -------------------------------------------------------------------------------- /test3/SndTV.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delahee/faxe/HEAD/test3/SndTV.hx -------------------------------------------------------------------------------- /test3/Test.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delahee/faxe/HEAD/test3/Test.hx -------------------------------------------------------------------------------- /test3/build.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delahee/faxe/HEAD/test3/build.hxml -------------------------------------------------------------------------------- /test3/build_nx.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delahee/faxe/HEAD/test3/build_nx.hxml -------------------------------------------------------------------------------- /test3/hxd/Signal.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delahee/faxe/HEAD/test3/hxd/Signal.hx -------------------------------------------------------------------------------- /test3/hxd/Stack.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delahee/faxe/HEAD/test3/hxd/Stack.hx -------------------------------------------------------------------------------- /test3/test.bat: -------------------------------------------------------------------------------- 1 | cd cpp 2 | CALL Test-debug.exe -------------------------------------------------------------------------------- /test3/toto.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delahee/faxe/HEAD/test3/toto.txt -------------------------------------------------------------------------------- /test3/totoErr.txt: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------