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

📄 boidsapp.h

📁 3D的Boids效果演示源程序
💻 H
字号:
/*	Filename:		BoidsApp.h
	Author:			Robert Platt
	Creation date:	15/06/1999
	Modified:		13/05/2000
	Version:		0.54
	Description:	Header file for the boids application class.
*/


// The DirectX libraries used.
#pragma comment ( lib, "ddraw.lib" )
#pragma comment ( lib, "dxguid.lib" )
#pragma comment ( lib, "d3drm.lib" )


#include "BoidsWin.h"


#ifndef BOIDS_APP_H
#define BOIDS_APP_H


class BoidsApp : public CWinApp
{
public:
	// Application start up function.
	BOOL InitInstance( );
	// Operations for when the application is idle.
	BOOL OnIdle( LONG lCount );

private:
	// Pointer to the application's main window.
	BoidsWin *mainWin;
};


#endif

⌨️ 快捷键说明

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