Add color class

Add Palladium Unique and Shared defs
Make stb_image an internal dependency
Start some work on font loader
This commit is contained in:
2025-12-07 18:08:36 +01:00
parent c18ef2161a
commit 28d2e291b3
13 changed files with 267 additions and 20 deletions

View File

@@ -1,3 +1,29 @@
# amethyst
2d Renderer Library made for ReCraft3DS based on palladium.
2d Renderer Library made for ReCraft3DS based on palladium.
## Usage
### Submodule:
Add amethyst as submodule to your repository
```bash
git submodule add https://github.com/tobid7/amethyst vendor/amethyst
```
Add it as submodule to your `CMakeLists.txt`
```cmake
add_subdirectory(vendor/amethyst)
target_link_libraries(${PROJECT_NAME} PUBLIC amethyst)
```
### Installed
Coming Soon...
## Credits
- [tobid7](https://github.com/tobid7) Lead Developer, Stealing a lot of code of [Palladium](https://github.com/tobid7/palladium)
- [nothings](https://github.com/nothings) [stb_image](https://github.com/nothings/stb)