Starsector API
Loading...
Searching...
No Matches
CryosleeperEntityPlugin.java
Go to the documentation of this file.
1package com.fs.starfarer.api.impl.campaign;
2
3import com.fs.starfarer.api.campaign.SectorEntityToken;
4
6
7 public void init(SectorEntityToken entity, Object pluginParams) {
8 super.init(entity, pluginParams);
9 readResolve();
10 }
11
12
13 Object readResolve() {
14 return this;
15 }
16
17 public void advance(float amount) {
18// for (MarketAPI market : Misc.getMarketsInLocation(entity.getContainingLocation())) {
19//
20// }
21 }
22
23}
24
25
26
27
28
void init(SectorEntityToken entity, Object pluginParams)