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

📄 windcombat.h

📁 国内著名网络游戏dragon的服务端完整源码 内附完整数据库结构
💻 H
字号:
// WindCombat.h: interface for the CWindCombat class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_WINDCOMBAT_H__BBAA3D62_FB7C_4B4B_9B9F_832DBFD9315E__INCLUDED_)
#define AFX_WINDCOMBAT_H__BBAA3D62_FB7C_4B4B_9B9F_832DBFD9315E__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

#include "Battle.h"
///////////////////////////////////////////////////////////////////////////////
// 官恩加己 傈捧胶懦
class CWindCombat : public TBinder<CCombat, CWindCombat>  
{
public:
	CWindCombat();
	virtual ~CWindCombat();

public:
  virtual bool Bind();
  virtual bool Elapse(CHARLIST* pTarget);
  
public:
  virtual bool Execute() 
  { 
    return (!IsExist(m_nIndex)) ? false:(*this.*m_tblHash[m_nIndex])(); 
  }

public:
  bool Charging();
  bool DoubleAttack();
  bool Whilwind();
  bool Twister();
  bool Gust();
  bool WindExtreme();
};
//
///////////////////////////////////////////////////////////////////////////////
#endif // !defined(AFX_WINDCOMBAT_H__BBAA3D62_FB7C_4B4B_9B9F_832DBFD9315E__INCLUDED_)

⌨️ 快捷键说明

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