NoWindow.cpp 334 B

123456789
  1. 
  2. #include "../DFPSR/gui/BackendWindow.h"
  3. #include "../DFPSR/api/stringAPI.h"
  4. std::shared_ptr<dsr::BackendWindow> createBackendWindow(const dsr::String& title, int width, int height) {
  5. dsr::sendWarning("Tried to create a DsrWindow without a window manager selected!\n");
  6. return std::shared_ptr<dsr::BackendWindow>();
  7. }