mirror of
https://github.com/quizhizhe/LiteLoaderBDS-1.16.40.git
synced 2025-06-05 03:43:40 +00:00
15 lines
309 B
C
15 lines
309 B
C
#ifndef ENTT_CONFIG_VERSION_H
|
|
#define ENTT_CONFIG_VERSION_H
|
|
|
|
#include "macro.h"
|
|
|
|
#define ENTT_VERSION_MAJOR 3
|
|
#define ENTT_VERSION_MINOR 11
|
|
#define ENTT_VERSION_PATCH 0
|
|
|
|
#define ENTT_VERSION \
|
|
ENTT_XSTR(ENTT_VERSION_MAJOR) \
|
|
"." ENTT_XSTR(ENTT_VERSION_MINOR) "." ENTT_XSTR(ENTT_VERSION_PATCH)
|
|
|
|
#endif
|