using System.Collections; using System.Collections.Generic; using UnityEngine; public class GlobalEnums : MonoBehaviour { public enum GemType { blue, green, red, yellow, purple, bomb }; public enum GameState { wait, move } }