#pragma once namespace Components { class Changelog : public Component { public: Changelog(); ~Changelog(); static void LoadChangelog(); private: static std::mutex Mutex; static std::vector Lines; static unsigned int GetChangelogCount(); static const char* GetChangelogText(unsigned int item, int column); static void SelectChangelog(unsigned int index); }; }