14 lines
199 B
C++
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;
|
|
}
|
|
|
|
|
|
}
|