Endswitch

From EDukeWiki
Revision as of 10:48, 24 July 2006 by Hendricks266 (talk | contribs)
Jump to navigation Jump to search

The endswitch statement simply ends a switch argument. See switch.

 switch <gamevar>
   case <constant>
     <do something>
     break
   case <constant>
     <do something>
     break
 endswitch