iw4x-client/src/Components/Modules/Changelog.hpp

22 lines
398 B
C++

#pragma once
namespace Components
{
class Changelog : public Component
{
public:
Changelog();
~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);
};
}