기초 C++ 스터디/예제
4-12. Text RPG 만들기(2)
전역변수를 사용하지 않고 포인터를 사용하여 만들어본다. void EnterLobby(); void PrintMessage(const char* msg); void CreatePlayer(StatInfo* playerinfo); void PrintStatInfo(const char* name, const StatInfo& info); void EnterGame(StatInfo* playerinfo); void CreateMonsters(StatInfo monsterinfo[], int count); bool EnterBattle(StatInfo* playerinfo, StatInfo* monsterinfo); 위에서 보이는 것 처럼 포인터와 참조를 섞어서 사용할 때 이후에 값을 건드릴 때 주의가 필요하다...
2023. 5. 23. 18:18