├── .gitignore ├── LICENSE ├── README.md ├── example ├── example.odin └── steam_appid.txt ├── odinfmt.json ├── steam_api64_exports.txt ├── steamworks ├── Readme.txt ├── redistributable_bin │ ├── linux32 │ │ └── libsteam_api.so │ ├── linux64 │ │ └── libsteam_api.so │ ├── osx │ │ └── libsteam_api.dylib │ ├── steam_api.dll │ ├── steam_api.lib │ └── win64 │ │ ├── steam_api64.dll │ │ └── steam_api64.lib └── steamworks.odin └── steamworks_binding_generator └── steamworks_binding_generator.odin /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakubtomsu/odin-steamworks/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakubtomsu/odin-steamworks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakubtomsu/odin-steamworks/HEAD/README.md -------------------------------------------------------------------------------- /example/example.odin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakubtomsu/odin-steamworks/HEAD/example/example.odin -------------------------------------------------------------------------------- /example/steam_appid.txt: -------------------------------------------------------------------------------- 1 | 480 -------------------------------------------------------------------------------- /odinfmt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakubtomsu/odin-steamworks/HEAD/odinfmt.json -------------------------------------------------------------------------------- /steam_api64_exports.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakubtomsu/odin-steamworks/HEAD/steam_api64_exports.txt -------------------------------------------------------------------------------- /steamworks/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakubtomsu/odin-steamworks/HEAD/steamworks/Readme.txt -------------------------------------------------------------------------------- /steamworks/redistributable_bin/linux32/libsteam_api.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakubtomsu/odin-steamworks/HEAD/steamworks/redistributable_bin/linux32/libsteam_api.so -------------------------------------------------------------------------------- /steamworks/redistributable_bin/linux64/libsteam_api.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakubtomsu/odin-steamworks/HEAD/steamworks/redistributable_bin/linux64/libsteam_api.so -------------------------------------------------------------------------------- /steamworks/redistributable_bin/osx/libsteam_api.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakubtomsu/odin-steamworks/HEAD/steamworks/redistributable_bin/osx/libsteam_api.dylib -------------------------------------------------------------------------------- /steamworks/redistributable_bin/steam_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakubtomsu/odin-steamworks/HEAD/steamworks/redistributable_bin/steam_api.dll -------------------------------------------------------------------------------- /steamworks/redistributable_bin/steam_api.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakubtomsu/odin-steamworks/HEAD/steamworks/redistributable_bin/steam_api.lib -------------------------------------------------------------------------------- /steamworks/redistributable_bin/win64/steam_api64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakubtomsu/odin-steamworks/HEAD/steamworks/redistributable_bin/win64/steam_api64.dll -------------------------------------------------------------------------------- /steamworks/redistributable_bin/win64/steam_api64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakubtomsu/odin-steamworks/HEAD/steamworks/redistributable_bin/win64/steam_api64.lib -------------------------------------------------------------------------------- /steamworks/steamworks.odin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakubtomsu/odin-steamworks/HEAD/steamworks/steamworks.odin -------------------------------------------------------------------------------- /steamworks_binding_generator/steamworks_binding_generator.odin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakubtomsu/odin-steamworks/HEAD/steamworks_binding_generator/steamworks_binding_generator.odin --------------------------------------------------------------------------------