summaryrefslogtreecommitdiff
path: root/internal_rewrite/IPanel.hpp
blob: bbae705f18ac75fef242a677aff26afda30e3fd3 (plain)
1
2
3
4
5
6
7
8
9
10
#pragma once
#include "util.hpp"

class IPanel {
public:
	const char* GetName( int panel ) {
		using fn = const char* ( __thiscall* )( void*, int );
		return util::get_vfunc< fn >( this, 36 )( this, panel );
	}
};