12 lines
182 B
C#
12 lines
182 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
// TODO: add other courses
|
|
public enum MinigameIndex
|
|
{
|
|
SPELLING_BEE,
|
|
HANGMAN,
|
|
JUST_SIGN
|
|
}
|