├── .gitignore ├── LICENSE.txt ├── dub.json ├── readme.md └── source └── bindbc └── bgfx ├── dynload.d ├── funcs.d ├── package.d └── types.d /.gitignore: -------------------------------------------------------------------------------- 1 | .dub/ 2 | lib 3 | dub.selections.json -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoaLitiuM/bindbc-bgfx/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoaLitiuM/bindbc-bgfx/HEAD/dub.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoaLitiuM/bindbc-bgfx/HEAD/readme.md -------------------------------------------------------------------------------- /source/bindbc/bgfx/dynload.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoaLitiuM/bindbc-bgfx/HEAD/source/bindbc/bgfx/dynload.d -------------------------------------------------------------------------------- /source/bindbc/bgfx/funcs.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoaLitiuM/bindbc-bgfx/HEAD/source/bindbc/bgfx/funcs.d -------------------------------------------------------------------------------- /source/bindbc/bgfx/package.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoaLitiuM/bindbc-bgfx/HEAD/source/bindbc/bgfx/package.d -------------------------------------------------------------------------------- /source/bindbc/bgfx/types.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoaLitiuM/bindbc-bgfx/HEAD/source/bindbc/bgfx/types.d --------------------------------------------------------------------------------