Starsector API
Loading...
Searching...
No Matches
PLStat.java
Go to the documentation of this file.
1package com.fs.starfarer.api.impl.campaign.plog;
2
3import java.awt.Color;
4
5public interface PLStat {
6
7 public static long CREDITS_MAX = 1000000;
8 public static long CARGO_MAX = 5000;
9 public static long FLEET_MAX = 300;
10 public static long COLONY_MAX = 30;
11
12
13 String getId();
15 String getGraphLabel();
16
19
21
22 String getHoverText(long value);
23
25}