我有一個小問題,我可能錯誤地包含了類文件,因爲我無法訪問敵人類的成員。我究竟做錯了什麼? 我CPP類無法訪問類的成員
#include "classes.h"
class Enemy
{
bool alive;
double posX,posY;
int enemyNum;
int animframe;
public:
Enemy(int col,int row)
{
animframe = rand() % 2;
posX = col*50;
posY = row*50;
}
Enemy()
{
}
void destroy()
{
alive = 0;
}
void setposX(double x)
{x = posX;}
void setposY(double y)
{y = posY;}
};
我的頭類:
class Enemy;
我的主:
#include "classes.h"
Enemy alien;
int main()
{
alien. // this is where intelisense tells me there are no members
}
沒有數據成員或你的意思是沒有作用的成員呢? –