Bgmmanager.cs

A small static class that exposes a single SoundHandle property marked with the [Property] attribute for the engine to serialize/expose. It appears intended to hold a background-music sound handle for global access.

Rough Code
using Sandbox;

public static class Bgmmanager 
{
	
	[Property] public static SoundHandle soundHandle { get; set; }


	
	
}