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

📄 computership.h

📁 一个类似坦克大战的小小游戏
💻 H
字号:

/**************************************************************************************
	Project  Name			: Pirates of the Caribbean
	Module Name				: PC ship
	File Name				: ComputerShip.h: interface for the CComputerShip class.
	Create					: 2007-7-17, by Vigame
	Update					: 
	Copyright				: 
	Reference				: 
	Abstrct					: The warships contrilled by computer.
 **************************************************************************************/

#ifndef __H_ComputerShip__
#define __H_ComputerShip__

#pragma once
#include "basewarship.h"

class CComputerShip : public CBaseWarship
{
public:
	CComputerShip(void);
	virtual ~CComputerShip(void);

public:
	void Fire(CGameResource *&pResource, CGameSound *&pSound);
	void ChangeDirection();

public:
	DWORD m_timeChange;
};

#endif

⌨️ 快捷键说明

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