Files
fallout2-ce/src/version.h
Alexander Batalov 55661742a2 Initial commit
2022-05-19 11:51:26 +03:00

15 lines
300 B
C

#ifndef VERSION_H
#define VERSION_H
// The size of buffer for version string.
#define VERSION_MAX (32)
#define VERSION_MAJOR (1)
#define VERSION_MINOR (2)
#define VERSION_RELEASE ('R')
#define VERSION_BUILD_TIME ("Dec 11 1998 16:54:30")
void versionGetVersion(char* dest);
#endif /* VERSION_H */