뭔가 잘 모르겠어서 따라하고있다. 참고 https://ninezmk2.blogspot.com/2019/11/blog-post.html 1. 유니티 3매치 퍼즐 프로젝트 만들기 유니티 3매치 퍼즐 게임 개발 과정을 공유하는 블로그입니다. ninezmk2.blogspot.com using System.Collections; using System.Collections.Generic; using UnityEngine; //Block Enum public enum BlockType { EMPTY = 0, BASIC = 1, } using System.Collections; using System.Collections.Generic; using UnityEngine; public class Block { priv..