rise-and-swine/Assets/Scripts/Assembly-CSharp/LevelRewardData.cs
2023-02-25 23:04:03 -05:00

16 lines
284 B
C#

using System;
using System.Collections.Generic;
using UnityEngine;
public class LevelRewardData : MonoBehaviour
{
public List<SandboxUnlock> sandboxUnlocks;
[Serializable]
public class SandboxUnlock
{
public string levelIdentifier;
public string sandboxIdentifier;
}
}