mirror of
https://github.com/krgamestudios/Toy.git
synced 2026-04-15 14:54:07 +10:00
9 lines
261 B
C
9 lines
261 B
C
#include "toy_common.h"
|
|
|
|
//defined separately, as compilation can take several seconds, invalidating the comparisons of __TIME__
|
|
static const char* build = __DATE__ " " __TIME__ ";development branch";
|
|
|
|
const char* Toy_private_version_build() {
|
|
return build;
|
|
}
|