구조체이것도 게임 만들 때 필수인 문법인 것 같다#include using namespace std;struct tagHero{ const char* name; //영웅이름 int hp; //영웅체력 int atk; //영웅공격력 float criPer; //치확 float criDam; //치피 bool isDead; //사망여부};void main(){ tagHero mario; mario.name = "마리오"; mario.hp = 100; mario.atk = 100; mario.criPer = 10.0f; mario.criDam = 1000; mario.isDead = false; cout 0 || mario.hp > 0) { jim.hp -= mario.atk; mario...