7 lines
195 B
C#
7 lines
195 B
C#
|
|
// Static container — passes selected song/difficulty between scenes
|
||
|
|
public static class GameSession
|
||
|
|
{
|
||
|
|
public static SongInfo SelectedSong;
|
||
|
|
public static string SelectedDifficulty;
|
||
|
|
}
|