M2-PT-DRP/source/events/pong/PongEvent.cpp

14 lines
199 B
C++

#include "PongEvent.hpp"
#include <iostream>
namespace drp::event {
void PongEvent::handle(const packet::GenericPacketContent& content) {
std::cout << "[Receiver] Pong." << std::endl;
}
}