This commit is contained in:
2022-07-20 15:08:04 +02:00
parent 25ced38cba
commit f0f4a64dfc
2 changed files with 67 additions and 51 deletions

View File

@@ -222,6 +222,18 @@ namespace RenderD7
int delay = 0;
};
class Toast : public RenderD7::Ovl
{
public:
Toast(std::string head, std::string msg);
void Draw(void) const override;
void Logic() override;
private:
std::string head, msg;
int msgposy = 240;
int delay = 0;
};
void AddOvl(std::unique_ptr<RenderD7::Ovl> scene);
namespace Color
{