├── .gitignore ├── LICENSE ├── README.md ├── example ├── Test.hx └── Test.sh ├── haxelib.json ├── include.xml ├── native ├── Build.xml ├── SteamWrap.cpp ├── include │ ├── hx │ │ └── put_hxcpp_hx_headers_here.txt │ └── steam │ │ └── put_steam_sdk_headers_here.txt └── lib │ ├── linux32 │ └── put_libsteam_api_dot_so_here.txt │ ├── linux64 │ └── put_libsteam_api_dot_so_here.txt │ ├── osx64 │ └── put_libsteam_api_dot_dylib_here.txt │ ├── put_steam_libs_in_these_folders.txt │ ├── win32 │ └── put_steam_api_dll_and_lib_here.txt │ └── win64 │ └── put_steam_api64_dll_and_lib_here.txt ├── ndll ├── Linux64 │ └── steamwrap.ndll ├── Mac │ └── steamwrap.ndll ├── Mac64 │ └── steamwrap.ndll ├── Windows │ └── steamwrap.ndll └── Windows64 │ └── steamwrap.ndll ├── setup.bat ├── setup.sh ├── steamwrap ├── api │ ├── Cloud.hx │ ├── Controller.hx │ ├── Matchmaking.hx │ ├── Networking.hx │ ├── Steam.hx │ ├── SteamID.hx │ ├── UGC.hx │ └── Workshop.hx ├── data │ ├── ControllerConfig.hx │ ├── Locale.hx │ └── VDF.hx └── helpers │ ├── Loader.hx │ ├── MacroHelper.hx │ ├── OneOfThree.hx │ ├── SteamBase.hx │ └── Util.hx └── templates └── steam_appid.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsiusprime/SteamWrap/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsiusprime/SteamWrap/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsiusprime/SteamWrap/HEAD/README.md -------------------------------------------------------------------------------- /example/Test.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsiusprime/SteamWrap/HEAD/example/Test.hx -------------------------------------------------------------------------------- /example/Test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsiusprime/SteamWrap/HEAD/example/Test.sh -------------------------------------------------------------------------------- /haxelib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsiusprime/SteamWrap/HEAD/haxelib.json -------------------------------------------------------------------------------- /include.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsiusprime/SteamWrap/HEAD/include.xml -------------------------------------------------------------------------------- /native/Build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsiusprime/SteamWrap/HEAD/native/Build.xml -------------------------------------------------------------------------------- /native/SteamWrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsiusprime/SteamWrap/HEAD/native/SteamWrap.cpp -------------------------------------------------------------------------------- /native/include/hx/put_hxcpp_hx_headers_here.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /native/include/steam/put_steam_sdk_headers_here.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /native/lib/linux32/put_libsteam_api_dot_so_here.txt: -------------------------------------------------------------------------------- 1 | libsteam_api.so goes in this folder 2 | -------------------------------------------------------------------------------- /native/lib/linux64/put_libsteam_api_dot_so_here.txt: -------------------------------------------------------------------------------- 1 | put libsteam_api.so in this folder 2 | -------------------------------------------------------------------------------- /native/lib/osx64/put_libsteam_api_dot_dylib_here.txt: -------------------------------------------------------------------------------- 1 | put libsteam_api.dylib in this folder 2 | -------------------------------------------------------------------------------- /native/lib/put_steam_libs_in_these_folders.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsiusprime/SteamWrap/HEAD/native/lib/put_steam_libs_in_these_folders.txt -------------------------------------------------------------------------------- /native/lib/win32/put_steam_api_dll_and_lib_here.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsiusprime/SteamWrap/HEAD/native/lib/win32/put_steam_api_dll_and_lib_here.txt -------------------------------------------------------------------------------- /native/lib/win64/put_steam_api64_dll_and_lib_here.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsiusprime/SteamWrap/HEAD/native/lib/win64/put_steam_api64_dll_and_lib_here.txt -------------------------------------------------------------------------------- /ndll/Linux64/steamwrap.ndll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsiusprime/SteamWrap/HEAD/ndll/Linux64/steamwrap.ndll -------------------------------------------------------------------------------- /ndll/Mac/steamwrap.ndll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsiusprime/SteamWrap/HEAD/ndll/Mac/steamwrap.ndll -------------------------------------------------------------------------------- /ndll/Mac64/steamwrap.ndll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsiusprime/SteamWrap/HEAD/ndll/Mac64/steamwrap.ndll -------------------------------------------------------------------------------- /ndll/Windows/steamwrap.ndll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsiusprime/SteamWrap/HEAD/ndll/Windows/steamwrap.ndll -------------------------------------------------------------------------------- /ndll/Windows64/steamwrap.ndll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsiusprime/SteamWrap/HEAD/ndll/Windows64/steamwrap.ndll -------------------------------------------------------------------------------- /setup.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsiusprime/SteamWrap/HEAD/setup.bat -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsiusprime/SteamWrap/HEAD/setup.sh -------------------------------------------------------------------------------- /steamwrap/api/Cloud.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsiusprime/SteamWrap/HEAD/steamwrap/api/Cloud.hx -------------------------------------------------------------------------------- /steamwrap/api/Controller.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsiusprime/SteamWrap/HEAD/steamwrap/api/Controller.hx -------------------------------------------------------------------------------- /steamwrap/api/Matchmaking.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsiusprime/SteamWrap/HEAD/steamwrap/api/Matchmaking.hx -------------------------------------------------------------------------------- /steamwrap/api/Networking.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsiusprime/SteamWrap/HEAD/steamwrap/api/Networking.hx -------------------------------------------------------------------------------- /steamwrap/api/Steam.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsiusprime/SteamWrap/HEAD/steamwrap/api/Steam.hx -------------------------------------------------------------------------------- /steamwrap/api/SteamID.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsiusprime/SteamWrap/HEAD/steamwrap/api/SteamID.hx -------------------------------------------------------------------------------- /steamwrap/api/UGC.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsiusprime/SteamWrap/HEAD/steamwrap/api/UGC.hx -------------------------------------------------------------------------------- /steamwrap/api/Workshop.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsiusprime/SteamWrap/HEAD/steamwrap/api/Workshop.hx -------------------------------------------------------------------------------- /steamwrap/data/ControllerConfig.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsiusprime/SteamWrap/HEAD/steamwrap/data/ControllerConfig.hx -------------------------------------------------------------------------------- /steamwrap/data/Locale.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsiusprime/SteamWrap/HEAD/steamwrap/data/Locale.hx -------------------------------------------------------------------------------- /steamwrap/data/VDF.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsiusprime/SteamWrap/HEAD/steamwrap/data/VDF.hx -------------------------------------------------------------------------------- /steamwrap/helpers/Loader.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsiusprime/SteamWrap/HEAD/steamwrap/helpers/Loader.hx -------------------------------------------------------------------------------- /steamwrap/helpers/MacroHelper.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsiusprime/SteamWrap/HEAD/steamwrap/helpers/MacroHelper.hx -------------------------------------------------------------------------------- /steamwrap/helpers/OneOfThree.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsiusprime/SteamWrap/HEAD/steamwrap/helpers/OneOfThree.hx -------------------------------------------------------------------------------- /steamwrap/helpers/SteamBase.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsiusprime/SteamWrap/HEAD/steamwrap/helpers/SteamBase.hx -------------------------------------------------------------------------------- /steamwrap/helpers/Util.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsiusprime/SteamWrap/HEAD/steamwrap/helpers/Util.hx -------------------------------------------------------------------------------- /templates/steam_appid.txt: -------------------------------------------------------------------------------- 1 | ::ENV_STEAM_APP_ID:: --------------------------------------------------------------------------------