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

📄 vs1.0_inst_list.h

📁 使用stl技术,(还没看,是听说的)
💻 H
字号:
#ifndef _VS10_H
#define _VS10_H

#define WRITEMASK_X		0x01
#define WRITEMASK_Y		0x02
#define WRITEMASK_Z		0x04
#define WRITEMASK_W		0x08

#include "vs1.0_inst.h"

typedef class VS10InstList {
public:
	VS10InstList();
	~VS10InstList();
	int Size();
	VS10InstList& operator+=(VS10InstPtr t);
	void Validate();
	void Translate();
private:
    VS10InstPtr list;
    int size;
    int max;
} *VS10InstListPtr;

#endif

⌨️ 快捷键说明

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