bad-piggies-0.1.3-porting/Assets/Scripts/Assembly-CSharp/EpisodeLevels.cs
2024-02-24 22:40:44 -05:00

15 lines
222 B
C#

using System.Collections.Generic;
using UnityEngine;
public class EpisodeLevels : MonoBehaviour
{
public List<string> m_levels = new List<string>();
public List<string> Levels
{
get
{
return m_levels;
}
}
}