mirror of
https://github.com/ZDoom/gzdoom.git
synced 2025-04-25 20:20:57 +00:00
11 lines
No EOL
304 B
C
11 lines
No EOL
304 B
C
#ifndef __VERSION_H__
|
|
#define __VERSION_H__
|
|
|
|
// Lots of different representations for the version number
|
|
enum { VERSION = 117 };
|
|
#define VERSIONSTR "117"
|
|
#define DOTVERSIONSTR "1.17:"
|
|
#define GAMEVER (0x0111)
|
|
#define SAVESIG "ZDOOMSAVE117 " // Needs to be exactly 16 chars long
|
|
|
|
#endif //__VERSION_H__
|