Starsector API
Loading...
Searching...
No Matches
BaseCustomProductionPickerDelegateImpl.java
Go to the documentation of this file.
1package com.fs.starfarer.api.campaign;
2
3import java.util.Set;
4
6 public float getCostMult() {
7 return 1f;
8 }
9
10 public Set<String> getAvailableFighters() {
11// List<String> result = new ArrayList<String>();
12// result.add("wasp_wing");
13// return result;
14 return null;
15 }
16
17 public Set<String> getAvailableShipHulls() {
18// List<String> result = new ArrayList<String>();
19// result.add("onslaught");
20// return result;
21 return null;
22 }
23
24 public Set<String> getAvailableWeapons() {
25// List<String> result = new ArrayList<String>();
26// result.add("hellbore");
27// return result;
28 return null;
29 }
30
31 public float getMaximumValue() {
32 return 100000;
33 }
34
36 }
37
38 public boolean withQuantityLimits() {
39 return true;
40 }
41
42}