refactor and rename

This commit is contained in:
James Seibel
2023-07-04 10:29:32 -05:00
parent 55f39996cb
commit 2b0ee29a8c
9 changed files with 150 additions and 139 deletions
@@ -1,15 +1,15 @@
package com.seibel.distanthorizons.api.methods.events.interfaces;
/**
*
* @author Cailin
*/
public interface IDhServerMessageRecieved<T> extends IDhApiEvent<T>
public interface IDhServerMessageReceived<T> extends IDhApiEvent<T>
{
/**
* Triggered when a plugin message is received from the server.
* @param channel The name of the channel this was received on.
* @param message The message sent from the server.
*/
void serverMessageRecieved(String channel, byte[] message);
void serverMessageReceived(String channel, byte[] message);
}