14 lines
273 B
C#
14 lines
273 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public static class EntryLevel
|
|
{
|
|
/* Entry Levels:
|
|
* 0: Minigame SBB
|
|
* 1: Minigame Grotto
|
|
* 2: Grotto Kochen Abbruch
|
|
*/
|
|
public static bool[] entries = new bool[3];
|
|
}
|