handleraction.h

来自「一个模拟动作源码」· C头文件 代码 · 共 40 行

H
40
字号
// ------------------------------------------------------------
// File Name: CHandlerAction.h
// Description: 
// Doctrine Name: StrikeDoctrine
// Object Name: 
// Object Description: 
// BKB DB Name: makdemobkb
// TKB DB Name: makdemotkb
// BKBEditor Version: 1.4.8.0
// Plugin Name: VrfBkbExporter.dll
// Plugin Version: 1.4.8.0
// Created By: root
// Create Date: 2008-05-23 15:53:08
// ------------------------------------------------------------ 

#pragma once

class CHandlerAction
{

public:
	virtual ~CHandlerAction();

	//these classes will use this handler: CState_FireAndSwoop
	static void Fire(void* pEntity, void* pMsg);

	//these classes will use this handler: CState_Climb
	static void Climb(void* pEntity, void* pMsg);

	//these classes will use this handler: CState_FireAndSwoop
	static void swoop(void* pEntity, void* pMsg);

	CHandlerAction();


protected:

private:

};

⌨️ 快捷键说明

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