14 lines
416 B
C#
14 lines
416 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using AK.Wwise;
|
|
using Sirenix.OdinInspector;
|
|
using UnityEngine;
|
|
|
|
namespace Ichni.Menu
|
|
{
|
|
[CreateAssetMenu(fileName = "TutorialCollection", menuName = "Ichni/TutorialCollection")]
|
|
public class TutorialCollection : SerializedScriptableObject
|
|
{
|
|
public Dictionary<string, SongItemData> songs = new Dictionary<string, SongItemData>();
|
|
}
|
|
} |