NoWindow.cpp 321 B

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