Advertisement
Vilsol

Untitled

Sep 24th, 2013
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.67 KB | None | 0 0
  1. ["Main"] = {
  2.   ['title'] = "Some Random Game";
  3.   ['menus']{
  4.     {
  5.       ["name"] = "Single Player";
  6.       ["dest"] = "SP";
  7.       ["func"] = nil;
  8.     };
  9.     {
  10.       ["name"] = "Multiplayer";
  11.       ["dest"] = "MP";
  12.       ["func"] = nil;
  13.     };
  14.     {
  15.       ["name"] = "Credits";
  16.       ["dest"] = "_function";
  17.       ["func"] = {
  18.         ["func"] = "exampleFunction";
  19.         ["args"] = {
  20.           "arg1";
  21.           "arg2";
  22.           "arg3"
  23.         }
  24.       }
  25.     };
  26.     {
  27.       ["name"] = "Settings";
  28.       ["dest"] = "Settings";
  29.       ["func"] = nil;
  30.     };
  31.     {
  32.       ["name"] = "Exit";
  33.       ["dest"] = "_exit";
  34.       ["func"] = nil;
  35.     }
  36.   }
  37. },
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement