Plan --- - Remove SoundManager Singleton (leave a legacy) - Design Interface IAudioControl - Implementation Interface IAudioControl Interface Design --- ```c# interface IAudioControl { void Play(); void Stop(); } ```
Plan
Interface Design