mirror of
https://github.com/usatiuk/cardboy.git
synced 2025-10-28 15:17:48 +01:00
12 lines
139 B
C++
12 lines
139 B
C++
#pragma once
|
|
|
|
#include "app_framework.hpp"
|
|
|
|
#include <memory>
|
|
|
|
namespace apps {
|
|
|
|
std::unique_ptr<IAppFactory> createTetrisAppFactory();
|
|
|
|
}
|