xbot/ping_thread.hpp

9 lines
112 B
C++
Raw Normal View History

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