Initial commit.
* Beginning reconstruction of Source SDK. Signed-off-by: aixxe <me@aixxe.net>
This commit is contained in:
14
include/cstrike/Interfaces/IPanel.h
Normal file
14
include/cstrike/Interfaces/IPanel.h
Normal file
@@ -0,0 +1,14 @@
|
||||
#pragma once
|
||||
|
||||
typedef unsigned long VPANEL;
|
||||
|
||||
class IPanel {
|
||||
public:
|
||||
const char* GetName(VPANEL vpanel) {
|
||||
return GetVirtualFunction<const char*(*)(IPanel*, VPANEL)>(this, 37)(this, vpanel);
|
||||
}
|
||||
|
||||
void PaintTraverse(VPANEL vpanel, bool force_repaint, bool allow_force) {
|
||||
GetVirtualFunction<void(*)(IPanel*, VPANEL, bool, bool)>(this, 37)(this, vpanel, force_repaint, allow_force);
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user