Import Test files

This commit is contained in:
2025-12-13 19:57:35 +08:00
parent 227be5bbd9
commit 8915a26407
234 changed files with 27436 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
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 }
}