68 lines
4.5 KiB
Python
68 lines
4.5 KiB
Python
from .gui.booster.add import GuiAddBoosterCommand
|
|
from .gui.booster.changeMeta import GuiChangeBoosterMetaCommand
|
|
from .gui.booster.remove import GuiRemoveBoosterCommand
|
|
from .gui.booster.sideEffectToggleState import GuiToggleBoosterSideEffectStateCommand
|
|
from .gui.booster.toggleState import GuiToggleBoosterStateCommand
|
|
from .gui.cargo.add import GuiAddCargoCommand
|
|
from .gui.cargo.changeAmount import GuiChangeCargoAmountCommand
|
|
from .gui.cargo.changeMeta import GuiChangeCargoMetaCommand
|
|
from .gui.cargo.remove import GuiRemoveCargoCommand
|
|
from .gui.commandFit.add import GuiAddCommandFitCommand
|
|
from .gui.commandFit.remove import GuiRemoveCommandFitCommand
|
|
from .gui.commandFit.toggleState import GuiToggleCommandFitStateCommand
|
|
from .gui.fitRename import GuiRenameFitCommand
|
|
from .gui.implant.add import GuiAddImplantCommand
|
|
from .gui.implant.changeLocation import GuiChangeImplantLocationCommand
|
|
from .gui.implant.changeMeta import GuiChangeImplantMetaCommand
|
|
from .gui.implant.remove import GuiRemoveImplantCommand
|
|
from .gui.implant.setAdd import GuiAddImplantSetCommand
|
|
from .gui.implant.toggleState import GuiToggleImplantStateCommand
|
|
from .gui.itemsRebase import GuiRebaseItemsCommand
|
|
from .gui.localDrone.add import GuiAddLocalDroneCommand
|
|
from .gui.localDrone.changeAmount import GuiChangeLocalDroneAmountCommand
|
|
from .gui.localDrone.changeMeta import GuiChangeLocalDroneMetaCommand
|
|
from .gui.localDrone.remove import GuiRemoveLocalDroneCommand
|
|
from .gui.localDrone.toggleState import GuiToggleLocalDroneStateCommand
|
|
from .gui.localFighter.abilityToggleState import GuiToggleLocalFighterAbilityStateCommand
|
|
from .gui.localFighter.add import GuiAddLocalFighterCommand
|
|
from .gui.localFighter.changeAmount import GuiChangeLocalFighterAmountCommand
|
|
from .gui.localFighter.changeMeta import GuiChangeLocalFighterMetaCommand
|
|
from .gui.localFighter.remove import GuiRemoveLocalFighterCommand
|
|
from .gui.localFighter.toggleState import GuiToggleLocalFighterStateCommand
|
|
from .gui.localModule.add import GuiAddLocalModuleCommand
|
|
from .gui.localModule.changeCharges import GuiChangeLocalModuleChargesCommand
|
|
from .gui.localModule.changeMetas import GuiChangeLocalModuleMetasCommand
|
|
from .gui.localModule.changeSpool import GuiChangeLocalModuleSpoolCommand
|
|
from .gui.localModule.changeStates import GuiChangeLocalModuleStatesCommand
|
|
from .gui.localModule.clone import GuiCloneLocalModuleCommand
|
|
from .gui.localModule.fill import GuiFillWithLocalModulesCommand
|
|
from .gui.localModule.mutatedConvert import GuiConvertMutatedLocalModuleCommand
|
|
from .gui.localModule.mutatedImport import GuiImportLocalMutatedModuleCommand
|
|
from .gui.localModule.mutatedRevert import GuiRevertMutatedLocalModuleCommand
|
|
from .gui.localModule.remove import GuiRemoveLocalModuleCommand
|
|
from .gui.localModule.swap import GuiSwapLocalModulesCommand
|
|
from .gui.localModuleCargo.cargoToLocalModule import GuiCargoToLocalModuleCommand
|
|
from .gui.localModuleCargo.localModuleToCargo import GuiLocalModuleToCargoCommand
|
|
from .gui.projectedDrone.add import GuiAddProjectedDroneCommand
|
|
from .gui.projectedDrone.changeAmount import GuiChangeProjectedDroneAmountCommand
|
|
from .gui.projectedDrone.changeMeta import GuiChangeProjectedDroneMetaCommand
|
|
from .gui.projectedDrone.remove import GuiRemoveProjectedDroneCommand
|
|
from .gui.projectedDrone.toggleState import GuiToggleProjectedDroneStateCommand
|
|
from .gui.projectedFighter.abilityToggleState import GuiToggleProjectedFighterAbilityStateCommand
|
|
from .gui.projectedFighter.add import GuiAddProjectedFighterCommand
|
|
from .gui.projectedFighter.changeAmount import GuiChangeProjectedFighterAmountCommand
|
|
from .gui.projectedFighter.changeMeta import GuiChangeProjectedFighterMetaCommand
|
|
from .gui.projectedFighter.remove import GuiRemoveProjectedFighterCommand
|
|
from .gui.projectedFighter.toggleState import GuiToggleProjectedFighterStateCommand
|
|
from .gui.projectedFit.add import GuiAddProjectedFitCommand
|
|
from .gui.projectedFit.changeAmount import GuiChangeProjectedFitAmountCommand
|
|
from .gui.projectedFit.remove import GuiRemoveProjectedFitCommand
|
|
from .gui.projectedFit.toggleState import GuiToggleProjectedFitStateCommand
|
|
from .gui.projectedModule.add import GuiAddProjectedModuleCommand
|
|
from .gui.projectedModule.changeCharges import GuiChangeProjectedModuleChargesCommand
|
|
from .gui.projectedModule.changeMeta import GuiChangeProjectedModuleMetaCommand
|
|
from .gui.projectedModule.changeSpool import GuiChangeProjectedModuleSpoolCommand
|
|
from .gui.projectedModule.changeState import GuiChangeProjectedModuleStateCommand
|
|
from .gui.projectedModule.remove import GuiRemoveProjectedModuleCommand
|
|
from .gui.shipModeChange import GuiChangeShipModeCommand
|