mirror of
https://github.com/nicbarker/clay.git
synced 2025-04-03 21:08:04 +00:00
Some checks failed
CMake on multiple platforms / build (Release, cl, cl, windows-latest) (push) Has been cancelled
CMake on multiple platforms / build (Release, clang, clang++, ubuntu-latest) (push) Has been cancelled
CMake on multiple platforms / build (Release, gcc, g++, ubuntu-latest) (push) Has been cancelled
10 lines
306 B
C
10 lines
306 B
C
#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") }) {
|
|
CLAY_TEXT(CLAY_STRING("Test"), CLAY_TEXT_CONFIG({ .fontId = 0, .fontSize = 24 }));
|
|
}
|
|
}
|