Initial source import.

This commit is contained in:
2014-05-29 20:45:10 +02:00
commit 400ee6a079
411 changed files with 18552 additions and 0 deletions
@@ -0,0 +1,16 @@
package mightypork.utils.eventbus.clients;
/**
* Client that can toggle receiving messages.
*
* @author Ondřej Hruška (MightyPork)
*/
public interface ToggleableClient {
/**
* @return true if the client wants to receive messages
*/
public boolean isListening();
}