7 lines
189 B
Python
7 lines
189 B
Python
class Version():
|
|
app_name = 'Stardew Mod Launcher'
|
|
app_version = '0.0.1'
|
|
|
|
@classmethod
|
|
def get_full_name(cls):
|
|
return '{} v{}'.format(cls.app_name, cls.app_version)
|