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

📄 application.h

📁 这是一款2d游戏引擎
💻 H
字号:
/*
	$Id: application.h,v 1.2 2003/10/14 15:52:09 mbn Exp $

	------------------------------------------------------------------------
	ClanLib, the platform independent game SDK.

	This library is distributed under the GNU LIBRARY GENERAL PUBLIC LICENSE
	version 2. See COPYING for details.

	For a total list of contributers see CREDITS.

	------------------------------------------------------------------------

	File purpose:
		Small Pacman game. Main header file.

*/

#ifndef header_pacapplication
#define header_pacapplication

#if _MSC_VER > 1000
#pragma once
#endif

class Application : public CL_ClanApplication
{
//!Operations:
public:
	//: Main function for the application.
	virtual int main(int argc, char **argv);

//!Implementation:
private:
};

#endif

⌨️ 快捷键说明

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