diff --git a/renderd7.hpp b/renderd7.hpp index 45910f7..3a2fa2c 100644 --- a/renderd7.hpp +++ b/renderd7.hpp @@ -122,11 +122,14 @@ namespace RenderD7 virtual ~Scene() {} virtual void Logic(u32 hDown, u32 hHeld, u32 hUp, touchPosition touch) = 0; virtual void Draw() const = 0; + virtual void Ovl() const = 0; static void Load(std::unique_ptr scene); static void Back(); static void doDraw(); static void doLogic(u32 hDown, u32 hHeld, u32 hUp, touchPosition touch); + static void HandleOvl(); }; + namespace Color { u32 Hex(const std::string color, u8 a = 255);