mirror of
https://github.com/dcs-retribution/dcs-retribution.git
synced 2025-11-10 15:41:24 +00:00
16 lines
274 B
Python
16 lines
274 B
Python
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)
|