You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
love2d-tank/constants.lua

29 lines
459 B

2 months ago
--[[
* Game states:
* - MENU
* - GAME
* - PAUSE
* - WIN
]]
--
GAMESTATE = "MENU"
MENU_POS = 0
MENU_MAX = 3 --0 play, 1 ?, 2 ?, 3 quit
PAUSED = false
PAUSE_POS = 0
2 months ago
PAUSE_MAX = 2 -- 0 resume, 1 menu, 2 quit
2 months ago
BULLETS_MAX = 10 -- MAX amount of bullets a player can shoot
--BULLETS_BOUCE_MAX = 7 -- MAX amount of bounces before exploding!
BULLETS_LIFETIME = 50
2 months ago
-- WIN flags for P1 and P2
P1_WIN = false
P2_WIN = false
2 months ago
-- WIN counts!
P1_COUNT = 0
P2_COUNT = 0