Update null_window.cpp

Add missing swCreateWindow function for null impl
This commit is contained in:
McMassiveNZ
2023-06-29 22:52:37 +02:00
parent 4a17314eaa
commit 6d7b325879

View File

@@ -17,3 +17,8 @@ bool ShouldClose(const NullWindowImpl&)
} }
} // namespace starter_window } // namespace starter_window
starter_window::Window swCreateWindow(starter_window::WindowCreateParams)
{
return starter_window::NullWindowImpl{};
}