Update null_window.cpp

Implement missing functionality
This commit is contained in:
McMassiveNZ
2023-05-08 19:03:49 +02:00
parent f8a10e126f
commit 0e83e458a9

View File

@@ -15,7 +15,8 @@ public:
NullWindowImpl& operator=(const NullWindowImpl&) = delete;
void PumpMessages() override {}
bool ShouldClose() override { return false; }
bool ShouldClose() const override { return false; }
void* GetNativeHandle() const override { return nullptr; }
};