Initial MSVC 2008 projects workspace
This commit is contained in:
28
l2ooghelper/UserInfo_c.h
Normal file
28
l2ooghelper/UserInfo_c.h
Normal file
@@ -0,0 +1,28 @@
|
||||
#ifndef H_USERINFO
|
||||
#define H_USERINFO
|
||||
|
||||
class UserInfo: public L2Player
|
||||
{
|
||||
public:
|
||||
UserInfo() { setUnused(); }
|
||||
virtual ~UserInfo() { setUnused(); }
|
||||
public:
|
||||
virtual void setUnused();
|
||||
public:
|
||||
// targeting
|
||||
unsigned int targetObjectID;
|
||||
double targetCurHp;
|
||||
double targetMaxHp;
|
||||
double targetCurMp;
|
||||
double targetMaxMp;
|
||||
// dead?
|
||||
int isDead;
|
||||
int canResurrectToVillage;
|
||||
int canResurrectToCH;
|
||||
int canResurrectToCastle;
|
||||
int canResurrectToFortress;
|
||||
int canResurrectToSiegeHQ;
|
||||
int canResurrectFixed;
|
||||
};
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user