Update ReadMe and add ShouldClose() function

- Removed all references to blank-slate
+ added a ShouldClose() function which gets polled to see if the window should close
This commit is contained in:
McMassiveNZ
2023-05-04 20:39:25 +02:00
parent fdd92cc500
commit d4dc5fb2f1
6 changed files with 25 additions and 14 deletions

View File

@@ -18,7 +18,8 @@ class Window
{
public:
virtual ~Window() = default;
virtual bool PumpMessages() = 0;
virtual void PumpMessages() = 0;
virtual bool ShouldClose() = 0;
};
}