Split main.py to separate packages and classes
This commit is contained in:
parent
a4894d612a
commit
64c9a96491
6 changed files with 29 additions and 11 deletions
7
app/Version.py
Normal file
7
app/Version.py
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
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)
|
||||
Loading…
Add table
Add a link
Reference in a new issue