M2-PT-DRP/source/events/info/InfoEvent.hpp

15 lines
No EOL
196 B
C++

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