-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
eb32b69
commit f58de92
Showing
5 changed files
with
38 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 23 additions & 0 deletions
23
src/mod/starsystemdesign/rulecmd/entity/StarSystemDesignEntityScript.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
package mod.starsystemdesign.rulecmd.entity; | ||
|
||
import java.util.List; | ||
import java.util.Map; | ||
|
||
import org.apache.log4j.Logger; | ||
|
||
import com.fs.starfarer.api.Global; | ||
import com.fs.starfarer.api.campaign.InteractionDialogAPI; | ||
import com.fs.starfarer.api.campaign.rules.MemoryAPI; | ||
import com.fs.starfarer.api.impl.campaign.rulecmd.BaseCommandPlugin; | ||
import com.fs.starfarer.api.util.Misc; | ||
|
||
import mod.starsystemdesign.rulecmd.debris.StarSystemDesignDebrisScript; | ||
|
||
public class StarSystemDesignEntityScript extends BaseCommandPlugin{ | ||
public static Logger log = Global.getLogger(StarSystemDesignDebrisScript.class); | ||
|
||
@Override | ||
public boolean execute(String ruleId, InteractionDialogAPI dialog, List<Misc.Token> params, Map<String, MemoryAPI> memoryMap) { | ||
return true; | ||
} | ||
} |