16 lines
284 B
C#
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;
|
|
}
|
|
}
|