move package name

This commit is contained in:
nkzawa
2015-08-31 03:23:03 +09:00
parent 742e824a49
commit d0039f7910
31 changed files with 60 additions and 60 deletions

View File

@@ -0,0 +1,22 @@
package io.socket.parser;
public class Packet<T> {
public int type = -1;
public int id = -1;
public String nsp;
public T data;
public int attachments;
public Packet() {}
public Packet(int type) {
this.type = type;
}
public Packet(int type, T data) {
this.type = type;
this.data = data;
}
}