handleraction.cpp
来自「一个模拟动作源码」· C++ 代码 · 共 51 行
CPP
51 行
// ------------------------------------------------------------
// File Name: CHandlerAction.cpp
// 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
// ------------------------------------------------------------
#include ".\HandlerAction.h"
#include "insert controller class header here"
CHandlerAction::~CHandlerAction()
{
}
void CHandlerAction::Fire(void* pEntity, void* pMsg)
{
DtFixedWingPilotController* pComponent = (DtFixedWingPilotController*)pEntity;
//Add your code here:
}
void CHandlerAction::Climb(void* pEntity, void* pMsg)
{
DtFixedWingPilotController* pComponent = (DtFixedWingPilotController*)pEntity;
//Add your code here:
}
void CHandlerAction::swoop(void* pEntity, void* pMsg)
{
DtFixedWingPilotController* pComponent = (DtFixedWingPilotController*)pEntity;
//Add your code here:
}
CHandlerAction::CHandlerAction()
{
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?