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

15 lines
No EOL
196 B
C++

#pragma once
#include "../base/BaseEvent.hpp"
namespace drp::event {
class PongEvent : public BaseEvent {
public:
void handle(const packet::GenericPacketContent& content) override;
};
}