├── .github └── workflows │ └── build.yml ├── .gitignore ├── .vscode └── settings.json ├── CMakeLists.txt ├── LICENSE ├── README.md ├── mod.json.in └── src ├── ShulkerRenderer.cpp ├── ShulkerRenderer.h ├── dllmain.cpp └── dllmain.h /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmethystAPI/Better-Inventory/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build/ -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmethystAPI/Better-Inventory/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmethystAPI/Better-Inventory/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmethystAPI/Better-Inventory/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmethystAPI/Better-Inventory/HEAD/README.md -------------------------------------------------------------------------------- /mod.json.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmethystAPI/Better-Inventory/HEAD/mod.json.in -------------------------------------------------------------------------------- /src/ShulkerRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmethystAPI/Better-Inventory/HEAD/src/ShulkerRenderer.cpp -------------------------------------------------------------------------------- /src/ShulkerRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmethystAPI/Better-Inventory/HEAD/src/ShulkerRenderer.h -------------------------------------------------------------------------------- /src/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmethystAPI/Better-Inventory/HEAD/src/dllmain.cpp -------------------------------------------------------------------------------- /src/dllmain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmethystAPI/Better-Inventory/HEAD/src/dllmain.h --------------------------------------------------------------------------------