Files

7 lines
195 B
C#
Raw Permalink Normal View History

// Static container — passes selected song/difficulty between scenes
public static class GameSession
{
public static SongInfo SelectedSong;
public static string SelectedDifficulty;
}