2016-12-19 11:52:02 -05:00
|
|
|
#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) {
|
2016-12-19 13:29:20 -05:00
|
|
|
GetVirtualFunction<void(*)(IPanel*, VPANEL, bool, bool)>(this, 42)(this, vpanel, force_repaint, allow_force);
|
2016-12-19 11:52:02 -05:00
|
|
|
}
|
2016-12-20 15:09:50 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
extern IPanel* panel;
|