Implemented new Plugin Message API - see http://dinnerbone.com/blog/2012/01/13/minecraft-plugin-channels-messaging/
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
package org.bukkit.plugin.messaging;
|
||||
|
||||
/**
|
||||
* Represents the different directions a plugin channel may go.
|
||||
*/
|
||||
public enum PluginChannelDirection {
|
||||
/**
|
||||
* The plugin channel is being sent to the server from a client.
|
||||
*/
|
||||
INCOMING,
|
||||
|
||||
/**
|
||||
* The plugin channel is being sent to a client from the server.
|
||||
*/
|
||||
OUTGOING
|
||||
}
|
||||
Reference in New Issue
Block a user