10 lines
177 B
C
10 lines
177 B
C
|
#pragma once
|
||
|
|
||
|
class CUserCmd;
|
||
|
|
||
|
class CInput {
|
||
|
public:
|
||
|
CUserCmd* GetUserCmd(int index) {
|
||
|
return GetVirtualFunction<CUserCmd*(*)(CInput*, int)>(this, 8)(this, index);
|
||
|
}
|
||
|
};
|