mirror of
https://github.com/dcs-liberation/dcs_liberation.git
synced 2025-11-10 14:22:26 +00:00
initial
This commit is contained in:
0
userdata/__init__.py
Normal file
0
userdata/__init__.py
Normal file
15
userdata/assets.py
Normal file
15
userdata/assets.py
Normal file
@@ -0,0 +1,15 @@
|
||||
import dcs
|
||||
|
||||
money = 2000
|
||||
aircraft = []
|
||||
armor = []
|
||||
control_points = []
|
||||
|
||||
def add_aircraft(plane: dcs.planes.PlaneType):
|
||||
aircraft.append(plane)
|
||||
|
||||
def add_armor(vehicle: dcs.vehicles.Armor):
|
||||
armor.append(vehicle)
|
||||
|
||||
def add_control_point(cp):
|
||||
control_points.append(cp)
|
||||
Reference in New Issue
Block a user