Added DATA_FILE and GET_DATA_FILE message types.

This commit is contained in:
CalDescent 2021-06-18 08:02:57 +01:00
parent f4ba7b2a0c
commit 652f30bdbd

View File

@ -83,7 +83,10 @@ public abstract class Message {
GET_ARBITRARY_DATA(91),
BLOCKS(100),
GET_BLOCKS(101);
GET_BLOCKS(101),
DATA_FILE(110),
GET_DATA_FILE(111);
public final int value;
public final Method fromByteBufferMethod;