Minicraft3DS/source/PacketHandler.c
2017-01-30 12:40:07 +01:00

10 lines
239 B
C

#include "PacketHandler.h"
void processPacket(networkPacket *packet, u8 type) {
//TODO: Differenciate the packets and process them
if(type==PACKET_REQUEST_MAPDATA) {
} else if(type==PACKET_MAPDATA) {
}
}