[C++] TRPG(TextRPG) Character제작
순서Character class 생성기능 분류변수와 함수 선언Character class 생성Character.h파일 작성#pragma once#include #include class Item;class Character {private: static Character* charInstance; std::string name; //플레이어 이름 int level = 1; //레벨 int maxLevel = 10; int health = 0; //현재 체력 int maxHealth = 0; //최대 체력 int attack = 0; //공격력 int experience = 0; //경험치 int needExperience = 100; int gold = 0; //소지 골드 Item* equipWeapon..