Starsector API
Loading...
Searching...
No Matches
BaseStoryPointActionDelegate.java
Go to the documentation of this file.
1package com.fs.starfarer.api.campaign;
2
3import com.fs.starfarer.api.ui.TooltipMakerAPI;
4
5public abstract class BaseStoryPointActionDelegate implements StoryPointActionDelegate {
6
7 public void preConfirm() {
8
9 }
10
11 public void confirm() {
12
13 }
14
15 public void createDescription(TooltipMakerAPI info) {
16
17 }
18
19 public float getBonusXPFraction() {
20 return 0f;
21 }
22
23 public String getConfirmSoundId() {
24 return "ui_char_spent_story_point";
25 }
26
28 return null;
29 }
30
31 public String getTitle() {
32 return null;
33 }
34
36 return 1;
37 }
38
39 public boolean withDescription() {
40 return true;
41 }
42
43 public boolean withSPInfo() {
44 return true;
45 }
46
47// public String getLogText() {
48// return null;
49// }
50
51
52}