[Unity] Monster Base 구현
MonsterBase의 구현프로젝트에서 몬스터를 구현을 담당하게 되어서 몬스터 스크립트의 베이스가 되는 MonsterBase를 만들어봤다. 필요한 변수들의 선언using System.Collections;using System.Collections.Generic;using UnityEngine;public class MonsterBase : MonoBehaviour{ public enum MonsterType { M_V1, M_V2, M_V3, M_CardPack, M_VE_1, M_VE_2, M_SpiderCardPack, Red_Spider, White_Spider, ..