10 lines
237 B
C#
10 lines
237 B
C#
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 }
|
|
}
|