This commit is contained in:
Nathan Adams
2012-01-13 08:51:10 +00:00
parent b96b34925b
commit 55cc8722c8
19 changed files with 1969 additions and 3 deletions

View File

@@ -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
}