master-server/src/services/elimination_handler.hpp

12 lines
151 B
C++
Raw Normal View History

2023-05-26 16:09:29 +02:00
#pragma once
#include "../service.hpp"
class elimination_handler : public service
{
public:
using service::service;
void run_frame() override;
};