mirror of
https://github.com/fishyboteso/fishyboteso.git
synced 2024-08-30 18:32:13 +00:00
12 lines
220 B
Python
12 lines
220 B
Python
|
class G:
|
||
|
"""
|
||
|
Initialize global variables used by different services
|
||
|
"""
|
||
|
fishCaught = 0
|
||
|
totalFishCaught = 0
|
||
|
stickInitTime = 0
|
||
|
stop = False
|
||
|
pause = True
|
||
|
debug = False
|
||
|
arguments = {}
|