boidsapp.h
来自「3D的Boids效果演示源程序」· C头文件 代码 · 共 38 行
H
38 行
/* 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 + =
减小字号Ctrl + -
显示快捷键?