Initial MSVC 2008 projects workspace
This commit is contained in:
19
l2detect/UserAI_LockTargetMgr.h
Normal file
19
l2detect/UserAI_LockTargetMgr.h
Normal file
@@ -0,0 +1,19 @@
|
||||
#pragma once
|
||||
|
||||
class UserAI_LockTargetMgr
|
||||
{
|
||||
public:
|
||||
UserAI_LockTargetMgr();
|
||||
~UserAI_LockTargetMgr();
|
||||
public:
|
||||
void setEnable( bool b );
|
||||
bool isEnabled() const;
|
||||
public:
|
||||
void onUserTargetSelected( unsigned int targetObjectID );
|
||||
void onUserRequestAction( unsigned int actionObjectID );
|
||||
void onUserRequestUnselectTarget();
|
||||
void onUserTargetLost();
|
||||
protected:
|
||||
bool m_enabled;
|
||||
unsigned int m_toid;
|
||||
};
|
Reference in New Issue
Block a user