2023-06-18 11:37:02 +02:00

21 lines
258 B
C++

#pragma once
namespace Components
{
class News : public Component
{
public:
News();
void preDestroy() override;
bool unitTest() override;
private:
static std::thread Thread;
static bool Terminate;
static const char* GetNewsText();
};
}