Starsector API
Loading...
Searching...
No Matches
ThemeGenContext.java
Go to the documentation of this file.
1package com.fs.starfarer.api.impl.campaign.procgen.themes;
2
3import java.util.ArrayList;
4import java.util.HashMap;
5import java.util.List;
6import java.util.Map;
7
8import com.fs.starfarer.api.impl.campaign.procgen.Constellation;
9
10public class ThemeGenContext {
11 public Map<Constellation, String> majorThemes = new HashMap<Constellation, String>();
12 public List<Constellation> constellations = new ArrayList<Constellation>();
13}