15 lines
No EOL
196 B
C++
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;
|
|
};
|
|
|
|
|
|
} |