uox3/source/cVersionClass.h
Xoduz 37a76083de Rest of the changes for 0.99.6-RC1
Misc cleanup and standardization of style and naming conventions in code and scripts
Added missing code for showing race in paperdoll based on ini setting
Players can no longer use Polymorph spell while incognitoed, or while under effect of tribal paint
Players can no longer use Incognito spell while polymorphed, or while under the effects of tribal paint
Facial hair is now removed from players who are under the effects of Incognito spell that changes their gender for female
2022-10-24 18:39:33 +08:00

27 lines
985 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__