init
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
#pragma once
|
||||
|
||||
// used: callvfunc
|
||||
#include "..\..\utils\memory\vfunc\vfunc.h"
|
||||
#include <type_traits>
|
||||
class IEngineClient
|
||||
{
|
||||
public:
|
||||
int maxClients()
|
||||
{
|
||||
return M::vfunc<int, 34U>(this);
|
||||
}
|
||||
|
||||
bool in_game()
|
||||
{
|
||||
return M::vfunc<bool, 35U>(this);
|
||||
}
|
||||
|
||||
bool connected()
|
||||
{
|
||||
return M::vfunc<bool, 36U>(this);
|
||||
}
|
||||
|
||||
int get_local_player() {
|
||||
int nIndex = -1;
|
||||
M::vfunc<void, 49U>(this, std::ref(nIndex), 0);
|
||||
return nIndex + 1;
|
||||
}
|
||||
public:
|
||||
inline bool valid() {
|
||||
return connected() && in_game();
|
||||
}
|
||||
|
||||
};
|
||||
Reference in New Issue
Block a user