1
0
mirror of https://github.com/Rogiel/l2jserver2 synced 2025-12-08 08:23:11 +00:00

Change-Id: Ifa069a09d1b603781a2c9255d89b77cd6f25a359

This commit is contained in:
rogiel
2011-04-28 22:53:11 -03:00
parent 05e8355aaf
commit 54ef3c7fa2
38 changed files with 962 additions and 99 deletions

View File

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