nishbox/engine/nb_version.h
2025-03-26 17:23:05 +09:00

14 lines
203 B
C

#ifndef __NB_VERSION_H__
#define __NB_VERSION_H__
typedef struct nb_version {
int major;
int minor;
int patch;
char full[64];
} nb_version_t;
void nb_get_version(nb_version_t* version);
#endif