sandbox
Loading...
Searching...
No Matches
entry_point.hpp
1#ifndef LIBSBX_CORE_ENTRY_POINT_HPP_
2#define LIBSBX_CORE_ENTRY_POINT_HPP_
3
4#include <memory>
5
6#include <libsbx/core/application.hpp>
7
8namespace sbx::core {
9
10extern auto create_application() -> std::unique_ptr<application>;
11
12} // namespace sbx::core
13
14#endif // LIBSBX_CORE_ENTRY_POINT_HPP_