mirror of
https://github.com/PikaMug/Quests.git
synced 2025-01-24 01:02:00 +01:00
Supply external conversation hooks, part 38
This commit is contained in:
parent
1b925f9374
commit
cf9a105eb9
@ -343,6 +343,12 @@ public class ActionMenuPrompt extends ActionsEditorNumericPrompt {
|
||||
super (context);
|
||||
}
|
||||
|
||||
private final int size = 2;
|
||||
|
||||
public int getSize() {
|
||||
return size;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getTitle(final ConversationContext context) {
|
||||
return null;
|
||||
|
@ -341,6 +341,12 @@ public class ConditionMenuPrompt extends ConditionsEditorNumericPrompt {
|
||||
super(context);
|
||||
}
|
||||
|
||||
private final int size = 2;
|
||||
|
||||
public int getSize() {
|
||||
return size;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getTitle(final ConversationContext context) {
|
||||
return null;
|
||||
|
@ -322,6 +322,12 @@ public class QuestMenuPrompt extends QuestsEditorNumericPrompt {
|
||||
public QuestConfirmDeletePrompt(final ConversationContext context) {
|
||||
super(context);
|
||||
}
|
||||
|
||||
private final int size = 2;
|
||||
|
||||
public int getSize() {
|
||||
return size;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getTitle(final ConversationContext context) {
|
||||
|
Loading…
Reference in New Issue
Block a user