Example #1
0
 public static void Initialize(SetLevelsDel levels)
 {
     if (levels == null)
     {
         throw new SoundSystemException("passed in delegate was null. Some sensitive information is also present in the message");
     }
     levels.Invoke(8.0);
 }
Example #2
0
 public static void Initialize(SetLevelsDel levels)
 {
     levels.Invoke(8.0);
 }
Example #3
0
 public static void Initialize(SetLevelsDel levels)
 {
     // TODO check for null delegate
     levels.Invoke(8.0);
 }