你们可以告诉我如何解决这个问题吗?
这是我的代码
#ifndef _GetComponentFunction_H
#define _GetComponentFunction_H
namespace fb
{
//Minimap
fb::ClientSpottingTargetComponent *cstc = soldier->getComponent<fb::ClientSpottingTargetComponent>( "ClientSpottingTargetComponent" );
cstc->m_spotType = fb::SpotType_Active;
#endif
答案 0 :(得分:0)
我假设您需要包含一个定义ClientSpottingTargetComponent
的头文件。
请注意,您可能还需要添加相关的源文件,或链接到相关的库。