Integrate minigame and courses
This commit is contained in:
15
Assets/Common/Scripts/MinigameList.cs
Normal file
15
Assets/Common/Scripts/MinigameList.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
[CreateAssetMenu(menuName = "Create new Scriptable/MinigameList")]
|
||||
public class MinigameList : ScriptableObject
|
||||
{
|
||||
[Header("Current Minigame")]
|
||||
// Index of the current course
|
||||
public int currentMinigameIndex = 0;
|
||||
|
||||
[Header("Minigames")]
|
||||
// List of minigames
|
||||
public List<Minigame> minigames = new List<Minigame>();
|
||||
}
|
||||
Reference in New Issue
Block a user