Starsector API
Loading...
Searching...
No Matches
SharedTrigger.java
Go to the documentation of this file.
1package com.fs.starfarer.api.impl.campaign.ghosts;
2
3public class SharedTrigger {
4
5 protected boolean set = false;
6
7 public boolean isSet() {
8 return set;
9 }
10 public void set(boolean set) {
11 this.set = set;
12 }
13
14}