13 lines
263 B
C++
13 lines
263 B
C++
|
#pragma once
|
||
|
|
||
|
#include "../service.hpp"
|
||
|
|
||
|
class patch_kill_list_command : public service
|
||
|
{
|
||
|
public:
|
||
|
using service::service;
|
||
|
|
||
|
const char* get_command() const override;
|
||
|
void handle_command(const network::address& target, const std::string_view& data) override;
|
||
|
};
|