NoWindow.cpp 374 B

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