#pragma once #include #include #include namespace F4T::LanDiscovery { struct DiscoveredServer { std::string host; std::uint16_t port{ 7777 }; std::string name; int players{ 0 }; int maxPlayers{ 16 }; int ping{ 0 }; }; std::vector Scan(std::string& a_error); }