mirror of
https://github.com/UOX3DevTeam/UOX3
synced 2026-08-13 12:27:04 -04:00
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
27 lines
985 B
C++
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__
|