Resolve WES-89 "Justsign music"

This commit is contained in:
Lukas Van Rossem
2023-03-25 11:34:08 +00:00
parent fee989006c
commit 668b769094
18 changed files with 307 additions and 57 deletions

View File

@@ -0,0 +1,19 @@
using System.Collections.Generic;
using UnityEngine;
/// <summary>
/// Keep track of all songs
/// </summary>
[CreateAssetMenu(menuName = "Create new Scriptable/SongList")]
public class SongList : ScriptableObject
{
/// <summary>
/// Index of the active/to be loaded/current song
/// </summary>
public int currentSongIndex = 0;
/// <summary>
/// List of all installed songs
/// </summary>
public List<Song> songs = new List<Song>();
}