mirror of
https://github.com/dcs-retribution/dcs-retribution.git
synced 2025-11-10 15:41:24 +00:00
Refactor game and ground object generation.
No real functional improvements yet, just reorganizing to make improvements easier.
This commit is contained in:
8
game/version.py
Normal file
8
game/version.py
Normal file
@@ -0,0 +1,8 @@
|
||||
from pathlib import Path
|
||||
|
||||
|
||||
#: Current version of Liberation.
|
||||
VERSION = "2.2.0-preview"
|
||||
if Path("buildnumber").exists():
|
||||
with open("buildnumber", "r") as file:
|
||||
VERSION += f"-{file.readline()}"
|
||||
Reference in New Issue
Block a user