플레이어 생성 Player.cs using System; using System.Collections.Generic; using System.Text; namespace CSharp { public enum PlayerType { None = 0, Knight = 1, Archer = 2, Mage = 3 } class Player { protected int hp = 0; protected int attack = 0; protected PlayerType type = PlayerType.None; protected Player(PlayerType type) { this.type = type; } public void SetInfo(int hp, int attack) { this.hp = hp; this..