21 lines
292 B
C++
21 lines
292 B
C++
#pragma once
|
|
|
|
namespace Components
|
|
{
|
|
class Discovery : public Component
|
|
{
|
|
public:
|
|
Discovery();
|
|
|
|
void preDestroy() override;
|
|
|
|
static void Perform();
|
|
|
|
private:
|
|
static bool IsTerminating;
|
|
static bool IsPerforming;
|
|
static std::thread Thread;
|
|
static std::string Challenge;
|
|
};
|
|
}
|