CSPspEmu.Core.Audio.StereoIntSoundSample.operator C# (CSharp) Method

operator() private method

private operator ( ) : StereoIntSoundSample
return StereoIntSoundSample
        public static StereoIntSoundSample operator *(StereoIntSoundSample A, int Mult)
        {
            return new StereoIntSoundSample((A.Left * Mult), (A.Right * Mult));
        }