Files
BeatSaber/Assets/Script/GameSession.cs
T

7 lines
195 B
C#
Raw Normal View History

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