Advertisement
sriyanto

GameSettings

Oct 11th, 2022
1,009
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.33 KB | None | 0 0
  1. local GameSettings = {}
  2.  
  3. -- Game Variables
  4. GameSettings.intermissionDuration = 5
  5. GameSettings.matchDuration = 10
  6. GameSettings.minimumPlayers = 2
  7. GameSettings.transitionTime = 5
  8.  
  9. -- Possible ways that the game can end.
  10. GameSettings.endStates = {
  11.     TimerUp = "TimerUp",
  12.     FoundWinner = "FoundWinner"
  13. }
  14.  
  15. return GameSettings
  16.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement