clay/examples/raylib-sidebar-scrolling-container/multi-compilation-unit.c

10 lines
306 B
C
Raw Normal View History

#include "../../clay.h"
// NOTE: This file only exists to make sure that clay works when included in multiple translation units.
void SatisfyCompiler(void) {
CLAY({ .id = CLAY_ID("SatisfyCompiler") }) {
2024-11-26 23:13:11 +00:00
CLAY_TEXT(CLAY_STRING("Test"), CLAY_TEXT_CONFIG({ .fontId = 0, .fontSize = 24 }));
}
}