xbot/ping_thread.hpp

10 lines
140 B
C++
Raw Normal View History

2023-11-25 09:22:55 -08:00
#pragma once
#include "connection.hpp"
2023-11-27 14:12:20 -08:00
#include "event.hpp"
2023-11-25 09:22:55 -08:00
2023-11-27 14:12:20 -08:00
struct PingThread
{
static auto start(Connection& connection) -> void;
};