yaze 0.3.2
Link to the Past ROM Editor
 
Loading...
Searching...
No Matches
hack_workflow_backend_factory.h
Go to the documentation of this file.
1#ifndef YAZE_APP_EDITOR_HACK_WORKFLOW_HACK_WORKFLOW_BACKEND_FACTORY_H_
2#define YAZE_APP_EDITOR_HACK_WORKFLOW_HACK_WORKFLOW_BACKEND_FACTORY_H_
3
4#include <memory>
5
6namespace yaze {
7namespace project {
8struct YazeProject;
9} // namespace project
10
11namespace editor::workflow {
12
13class HackWorkflowBackend;
14
15std::unique_ptr<HackWorkflowBackend> CreateHackWorkflowBackendForProject(
16 const project::YazeProject* project);
17
18} // namespace editor::workflow
19} // namespace yaze
20
21#endif // YAZE_APP_EDITOR_HACK_WORKFLOW_HACK_WORKFLOW_BACKEND_FACTORY_H_
std::unique_ptr< HackWorkflowBackend > CreateHackWorkflowBackendForProject(const project::YazeProject *project)