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

19 lines
310 B
C++

#include "PongEvent.hpp"
#include <iostream>
namespace drp::event {
void PongEvent::handle(
Context& context,
const packet::base::PacketContent& content,
const sockaddr_storage& fromAddress,
const socklen_t fromAddressLength
) {
std::cout << "[Event - Pong] Pong." << std::endl;
}
}