You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

8 lines
254 B

using UnityEngine;
using System.Collections.Generic;
public static class GlobalGameSettings {
public static GameObject Player1Prefab;
public static List<LevelData> LevelData = new List<global::LevelData>();
public static int currentLevelId = 0;
}