Files
css-linux-cheat/include/cstrike/Interfaces/IPanel.h
aixxe 5d3e60ddd3 Initial commit.
* Beginning reconstruction of Source SDK.

Signed-off-by: aixxe <me@aixxe.net>
2016-12-19 17:14:26 +00:00

14 lines
395 B
C++

#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);
}
};