mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 19:07:35 +00:00
Add a simple MsgBox() :^)
This commit is contained in:
parent
e9e7f7a714
commit
3ebea05996
9 changed files with 89 additions and 0 deletions
|
@ -1,6 +1,7 @@
|
|||
#pragma once
|
||||
|
||||
#include "Object.h"
|
||||
#include "Rect.h"
|
||||
|
||||
class AbstractScreen : public Object {
|
||||
public:
|
||||
|
@ -11,6 +12,8 @@ public:
|
|||
|
||||
static AbstractScreen& the();
|
||||
|
||||
Rect rect() const { return { 0, 0, width(), height() }; }
|
||||
|
||||
protected:
|
||||
AbstractScreen(unsigned width, unsigned height);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue