mirror of
https://github.com/hedge-dev/UnleashedRecomp.git
synced 2026-01-04 02:31:10 -06:00
17 lines
269 B
C++
17 lines
269 B
C++
#pragma once
|
|
|
|
#include <queue>
|
|
|
|
class AchievementOverlay
|
|
{
|
|
public:
|
|
static inline bool s_isVisible = false;
|
|
|
|
static inline std::queue<uint16_t> s_queue{};
|
|
|
|
static void Init();
|
|
static void Draw();
|
|
static void Open(int id);
|
|
static void Close();
|
|
};
|