[Bleeding] Added Conversations API. Addresses BUKKIT-864

By: rmichela <deltahat@gmail.com>
This commit is contained in:
Bukkit/Spigot
2012-01-22 02:35:42 -05:00
parent fb55ed2a78
commit 2280c6be2b
26 changed files with 1446 additions and 2 deletions

View File

@@ -9,6 +9,7 @@ import java.util.Set;
import java.util.UUID;
import org.bukkit.*;
import org.bukkit.block.Block;
import org.bukkit.conversations.Conversation;
import org.bukkit.entity.Arrow;
import org.bukkit.entity.Egg;
import org.bukkit.entity.Entity;
@@ -718,4 +719,20 @@ public class TestPlayer implements Player {
public boolean setWindowProperty(Property prop, int value) {
throw new UnsupportedOperationException("Not supported yet.");
}
public boolean isConversing() {
throw new UnsupportedOperationException("Not supported yet.");
}
public void acceptConversationInput(String input) {
throw new UnsupportedOperationException("Not supported yet.");
}
public boolean beginConversation(Conversation conversation) {
throw new UnsupportedOperationException("Not supported yet.");
}
public void abandonConversation(Conversation conversation) {
throw new UnsupportedOperationException("Not supported yet.");
}
}