21 lines
382 B
C++
21 lines
382 B
C++
#pragma once
|
|
|
|
namespace Components
|
|
{
|
|
class Changelog : public Component
|
|
{
|
|
public:
|
|
Changelog();
|
|
|
|
static void LoadChangelog();
|
|
|
|
private:
|
|
static std::mutex Mutex;
|
|
static std::vector<std::string> Lines;
|
|
|
|
static unsigned int GetChangelogCount();
|
|
static const char* GetChangelogText(unsigned int item, int column);
|
|
static void SelectChangelog(unsigned int index);
|
|
};
|
|
}
|