?? wall.h
字號:
/**************************************************************************************
Project Name : Map Edit of my game
Module Name : Game Object
File Name : Wall.h: interface for the CWall class.
Create : 2007-7-10, by Vigame
Update :
Copyright :
Reference :
Abstrct : The wall have three level, diffent states have diffrent texture.
level one HP <= 5, texture: wall0, wall1,
level two HP <= 10, texture: wall4, wall5,
level three HP <= 15, texture: wall2, wall3.
**************************************************************************************/
#if !defined(AFX_WALL_H__1E51E35C_5F23_4208_B087_F6B83944EBD2__INCLUDED_)
#define AFX_WALL_H__1E51E35C_5F23_4208_B087_F6B83944EBD2__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "GameObject.h"
class CWall : public CGameObject
{
public:
CWall();
virtual ~CWall();
};
#endif // !defined(AFX_WALL_H__1E51E35C_5F23_4208_B087_F6B83944EBD2__INCLUDED_)
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -