Advertisement
WindowsTV

Untitled

Sep 13th, 2015
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.47 KB | None | 0 0
  1.         public string settings()
  2.         {
  3.             string setting = "";
  4.             setting += BALLOONS_VISIBLE ? "1" : "0";
  5.             setting += MUSIC ? "1" : "0";
  6.             setting += SafeChat ? "1" : "0";
  7.             setting += Airtower ? "1" : "0";
  8.             return setting;
  9.         }
  10.         private static void getSettings()
  11.         {
  12.             string savedSettings = UserSettings.Get();
  13.             if (savedSettings.Length != 4) return;
  14.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement