Archived
0
This commit is contained in:
2018-07-12 12:10:33 +03:00
parent 222c04603f
commit 99febc56df
5 changed files with 72 additions and 0 deletions

View File

@@ -4,6 +4,9 @@
*/
package mc.core.network;
/**
* Пакеты Client->Server
*/
public interface CSPacket {
void readSelf(NetStream netStream);
}

View File

@@ -4,6 +4,9 @@
*/
package mc.core.network;
/**
* Пакеты Server->Client
*/
public interface SCPacket {
void writeSelf(NetStream netStream);
}