stuff-from-scratch/apps/notes_tk/canvas/CanvasController.cpp
2022-12-02 11:50:15 +00:00

6 lines
145 B
C++

#include "CanvasController.h"
std::unique_ptr<CanvasController> CanvasController::Create()
{
return std::make_unique<CanvasController>();
}