GoldFish Engine
Quite simple and lightweight game engine
Loading...
Searching...
No Matches
version.h
Go to the documentation of this file.
1
7#ifndef __GF_TYPE_VERSION_H__
8#define __GF_TYPE_VERSION_H__
9
10#include <gf_pre.h>
11#include <gf_macro.h>
12
13#ifdef GF_EXPOSE_VERSION
14/* External library */
15
16/* Engine */
17
18/* Standard */
19
55GF_DECLARE_TYPE(version, {
56 int major;
57 int minor;
58 int patch;
59 char date[64];
60 char full[64];
61 char backend[32];
62 char driver[32];
63 char lua[32];
64 char zlib[32];
65 char thread[32];
66});
67#else
68#error "should not happen!"
69#endif
70
71#endif
#define GF_DECLARE_TYPE(n, b)
Macro to define engine type shorter.
Definition gf_macro.h:172
Required headers before anything.