📄 bullet.h
字号:
/**************************************************************************************
Project Name : Pirates of the Caribbean
Module Name : Bullet
File Name : Bullet.h: interface for the CBullet class.
Create : 2007-7-16, by Vigame
Update :
Copyright :
Reference :
Abstrct : Bullet
**************************************************************************************/
#ifndef __H_Bullet__
#define __H_Bullet__
#pragma once
#include "moveobject.h"
class CBullet : public CMoveObject
{
public:
CBullet(void);
virtual ~CBullet(void);
public:
int m_nPower; // The power of the bullet
};
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -