mirror of
https://github.com/krgamestudios/Toy.git
synced 2026-05-07 09:20:11 +10:00
185f3896c5
Anything prepended with TOY_API is 'public'. Anything that starts with Toy_private_* shouldn't be touched.
9 lines
274 B
C
9 lines
274 B
C
#include "toy_common.h"
|
|
|
|
//defined separately, as compilation can take several seconds, invalidating the comparisons of the given macros
|
|
static const char* build = __DATE__ " " __TIME__ ", incomplete Toy v2.x";
|
|
|
|
const char* Toy_private_versionBuild(void) {
|
|
return build;
|
|
}
|