You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
322 B
C

2 years ago
#pragma once
#include <memory>
#include "core/game.h"
#include "core/editor.h"
#include "core/corefactory.h"
2 years ago
namespace classic
2 years ago
{
std::unique_ptr<kku::Game> getGame(const std::shared_ptr<kku::CoreFactory>& core_factory);
std::unique_ptr<kku::Editor> getEditor(const std::shared_ptr<kku::CoreFactory>& core_factory);
}