uox3/source/cVersionClass.h
Xoduz 49c65e110d 0.99.4
Updated version number and release changelog
2020-11-08 18:17:41 +08:00

27 lines
982 B
C++

//o-----------------------------------------------------------------------------------------------o
//| File - cVersionClass.h
//| Date - 10/17/2002
//o-----------------------------------------------------------------------------------------------o
//| Purpose -
//o-----------------------------------------------------------------------------------------------o
#ifndef __CVERSIONCLASS_H__
#define __CVERSIONCLASS_H__
class CVersionClass
{
public:
CVersionClass();
~CVersionClass();
static std::string GetVersion( void );
static std::string GetBuild( void );
static std::string GetRealBuild( void );
static std::string GetScriptVersion( void );
static std::string GetCharacterVersion( void );
static std::string GetItemVersion( void );
static std::string GetProductName( void );
static std::string GetName( void );
static std::string GetEmail( void );
static std::string GetProgrammers( void );
};
#endif // __CVERSIONCLASS_H__