Vector2D mob::Seek(Vector2D target)
{
Vector2D Velo;
Vector2D Accn;
Velo = (target – m_pos).unitVector();///here is where its pointing
Accn = Velo-m_Velo;
return Accn;
}
错误2错误C2146:语法错误:在标识符之前缺少')' ' - 'l:\ bmb \ bot.cpp 316 bmb
这个想法出错了吗?
答案 0 :(得分:1)
你似乎已经以某种方式得到了你的减号运算符应该是的短划线。