작성
·
872
0
안녕하세요, 열심히 배우고 있는 학생입니다.
다름이 아니라, 강의를 따라 공부하는중에 오류가 나서 글을 남깁니다.
setMonster(_tagMonster* pMonsterArr)
{
pMonsterArr[0] = CreateMonster("고블린",.......)
}
이렇게 하면, char* is incompatible with parameter of type char*이라는 오류가 납니다.
어떻게 해결할 수 있을까요?
답변 2
0
_tagMonster CreateMonster(const char* pName, int iAttackMin, int iAttackMax,
int iArmorMin, int iArmorMax, int iHP, int iHPMax, int iMP, int iMPMax,
int iLevel, int iExp, int iGoldMin, int iGoldMax)
0