Implement Wiggle Title Text

This commit is contained in:
2024-01-03 15:18:44 -06:00
parent d692d57bcf
commit aeb1cd57da
8 changed files with 66 additions and 14 deletions

View File

@@ -40,10 +40,10 @@ namespace JabyEngine {
void write(State& state, const char* str, GPU::Color24 color, ...) {
__write_impl(color, color, nullptr);
}
void write(State& state, const char* str, GPU::Color24 color, Wiggle* wiggle, ...) {
void write(State& state, const char* str, GPU::Color24 color, const Wiggle* wiggle, ...) {
__write_impl(wiggle, color, wiggle);
}
void write(State& state, const char* str, GPU::Color24 color, Wiggle* wiggle, va_list list);
void write(State& state, const char* str, GPU::Color24 color, const Wiggle* wiggle, va_list list);
void render();
#undef __write_impl