C#을 사용한 가위바위보 구현 요구사항 숫자키(1~3)로 가위(1) 바위(2) 보(3)를 선택한다. SpaceBar를 누르면 선택한 키(가위/바위/보)가 확정된다. 컴퓨터는 랜덤으로 가위 바위 보를 선택한다. 유저와 컴퓨터의 패를 비교하여 승부를 한다. 승부결과를 알린다. (유저기준) 전체 코드 using System.Collections; using System.Collections.Generic; using UnityEngine; public class RSP : MonoBehaviour { enum Hands { none = 0, Rock = 1, Scisscors = 2, Paper = 3, } Hands user_hand = Hands.Rock; // 유저가 낼 손 Hands com_hand =..