Starsector API
Loading...
Searching...
No Matches
BaseCustomDialogDelegate.java
Go to the documentation of this file.
1package com.fs.starfarer.api.campaign;
2
3import com.fs.starfarer.api.ui.CustomPanelAPI;
4
6
7 public void createCustomDialog(CustomPanelAPI panel, CustomDialogCallback callback) {
8 // TODO Auto-generated method stub
9
10 }
11
12 public boolean hasCancelButton() {
13 // TODO Auto-generated method stub
14 return false;
15 }
16
17 public String getConfirmText() {
18 // TODO Auto-generated method stub
19 return null;
20 }
21
22 public String getCancelText() {
23 // TODO Auto-generated method stub
24 return null;
25 }
26
27 public void customDialogConfirm() {
28 // TODO Auto-generated method stub
29
30 }
31
32 public void customDialogCancel() {
33 // TODO Auto-generated method stub
34
35 }
36
38 // TODO Auto-generated method stub
39 return null;
40 }
41
42}
void createCustomDialog(CustomPanelAPI panel, CustomDialogCallback callback)