⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tweakpropdlg.h

📁 hl2 source code. Do not use it illegal.
💻 H
字号:

// The ITweakPropDlg class is given a RecvTable, and sets up a UI for users
// to modify properties in the RecvTable.

#ifndef TWEAKPROPDLG_H
#define TWEAKPROPDLG_H


class RecvTable;


class ITweakPropDlg
{
public:
	virtual			~ITweakPropDlg() {}
	
	// Delete the object.
	virtual void	Release() = 0;

	// Change the object that the dialog is modifying.
	// Also set all the values in the object.
	virtual void	SetObj(void *pObj) = 0;
};

ITweakPropDlg* CreateTweakPropDlg(
	RecvTable *pTable, 
	void *pObj, 
	char *pTitle,
	void *hParentWindow,
	void *hInstance);


#endif


⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -