mirror of
https://git.krews.org/morningstar/Arcturus-Community.git
synced 2025-02-01 12:52:37 +01:00
16 lines
394 B
Java
16 lines
394 B
Java
package com.eu.habbo.messages.incoming;
|
|
|
|
import com.eu.habbo.habbohotel.gameclients.GameClient;
|
|
import com.eu.habbo.messages.ClientMessage;
|
|
|
|
public abstract class MessageHandler {
|
|
public GameClient client;
|
|
public ClientMessage packet;
|
|
public boolean isCancelled = false;
|
|
|
|
public abstract void handle() throws Exception;
|
|
|
|
public int getRatelimit() {
|
|
return 0;
|
|
}
|
|
} |