Starsector API
Loading...
Searching...
No Matches
AdminData.java
Go to the documentation of this file.
1package com.fs.starfarer.api.characters;
2
3import com.fs.starfarer.api.campaign.econ.MarketAPI;
4
5
6
7public class AdminData {
8 private PersonAPI person;
9 private MarketAPI market;
10
11
12 public AdminData(PersonAPI person) {
13 this.person = person;
14 }
15
17 return person;
18 }
19
20 public void setPerson(PersonAPI person) {
21 this.person = person;
22 }
23
24
25 public void setMarket(MarketAPI market) {
26 this.market = market;
27 }
28
29 public MarketAPI getMarket() {
30 return market;
31 }
32
33 protected void assign(MarketAPI market) {
34
35 }
36
37 protected void unassign(MarketAPI market) {
38
39 }
40}