We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d9ebfa commit 62d5ea7Copy full SHA for 62d5ea7
Assets/BossRoom/Scripts/Shared/ClientPrefs.cs
@@ -7,10 +7,10 @@ namespace Unity.Multiplayer.Samples.BossRoom.Client
7
/// (This is just a wrapper around the PlayerPrefs system,
8
/// so that all the calls are in the same place.)
9
/// </summary>
10
- public class ClientPrefs
+ public static class ClientPrefs
11
{
12
- private const float k_DefaultMasterVolume = 0.5f;
13
- private const float k_DefaultMusicVolume = 0.8f;
+ const float k_DefaultMasterVolume = 0.5f;
+ const float k_DefaultMusicVolume = 0.8f;
14
15
public static float GetMasterVolume()
16
0 commit comments