the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
1#pragma once
2#include "GuiComponent.h"
3class Achievement;
4class ItemRenderer;
5using namespace std;
6
7class AchievementPopup : public GuiComponent
8{
9private:
10 Minecraft *mc;
11 int width, height;
12
13 wstring title;
14 wstring desc;
15 Achievement *ach;
16 __int64 startTime;
17 ItemRenderer *ir;
18 bool isHelper;
19
20public:
21 AchievementPopup(Minecraft *mc);
22 void popup(Achievement *ach);
23 void permanent(Achievement *ach);
24private:
25 void prepareWindow();
26public:
27 void render();
28};