24 lines
383 B
C++
Raw Normal View History

2017-01-20 14:36:52 +01:00
#pragma once
2017-01-19 22:23:59 +01:00
namespace Components
{
class Discovery : public Component
{
public:
Discovery();
void preDestroy() override;
2017-01-19 22:23:59 +01:00
static void Perform();
private:
static bool IsTerminating;
static bool IsPerforming;
static std::thread Thread;
static std::string Challenge;
static Dvar::Var NetDiscoveryPortRangeMin;
static Dvar::Var NetDiscoveryPortRangeMax;
2017-01-19 22:23:59 +01:00
};
}