mirror of
https://github.com/Rogiel/l2jserver2
synced 2025-12-08 08:23:11 +00:00
Change-Id: Ifa069a09d1b603781a2c9255d89b77cd6f25a359
This commit is contained in:
@@ -2,6 +2,22 @@ package com.l2jserver.game.net.packet;
|
||||
|
||||
import org.jboss.netty.buffer.ChannelBuffer;
|
||||
|
||||
import com.google.inject.Injector;
|
||||
|
||||
public interface ClientPacket extends Packet {
|
||||
/**
|
||||
* Read binary data in the {@link ChannelBuffer}.
|
||||
*
|
||||
* @param buffer
|
||||
* the buffer
|
||||
*/
|
||||
void read(ChannelBuffer buffer);
|
||||
|
||||
/**
|
||||
* Process the packet
|
||||
*
|
||||
* @param injector
|
||||
* the injector
|
||||
*/
|
||||
void process(Injector injector);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user