Endswitch: Difference between revisions

From EDukeWiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
The '''endswitch''' statement simply ends a switch argument. See [[switch]].
The '''endswitch''' statement simply ends a switch argument. See [[switch]].
  [[switch]] <gamevar>
    case <constant>
      <do something>
      [[break]]
    case <constant>
      <do something>
      break
  '''endswitch'''


[[Category:EDuke commands]]
[[Category:EDuke commands]]

Revision as of 10:49, 24 July 2006

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