SnootGame/game/utility.rpy

13 lines
349 B
Text
Raw Normal View History

## Utility functions for game setup, debugging etc.
2021-06-21 23:03:37 +02:00
label initstats(anon=0, fang=0, trad=False):
# Sets various game-related global variables
# :param int anon: Anon's score
# :param int fang: Fang's score
# :param bool trad: Tradwife ending flag
$ anonscore = anon
$ fangscore = fang
$ tradwife = trad
return