Advertisement
Guest User

Untitled

a guest
Feb 6th, 2016
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.05 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace UFControl
  8. {
  9.     class UnionFilms
  10.     {
  11.         [ScriptAttribute("DolbyServer", "l1")]
  12.         public static void highLights()
  13.         {
  14.             Manager.getInterface("Lights").sendCommand("High");
  15.         }
  16.  
  17.         [ScriptAttribute("DolbyServer", "l2")]
  18.         public static void customLights()
  19.         {
  20.             Manager.getInterface("Lights").sendCommand("Custom");
  21.         }
  22.  
  23.         [ScriptAttribute("DolbyServer", "l3")]
  24.         public static void midLights()
  25.         {
  26.             Manager.getInterface("Lights").sendCommand("Mid");
  27.         }
  28.  
  29.         [ScriptAttribute("DolbyServer", "l4")]
  30.         public static void lowLights()
  31.         {
  32.             Manager.getInterface("Lights").sendCommand("Low");
  33.         }
  34.  
  35.         [ScriptAttribute("DolbyServer", "l5")]
  36.         public static void offLights()
  37.         {
  38.             Manager.getInterface("Lights").sendCommand("Off");
  39.         }
  40.     }
  41. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement