mirror of
https://github.com/enduro2d/enduro2d.git
synced 2025-12-15 08:15:38 +07:00
dummy engine module
This commit is contained in:
@@ -9,6 +9,7 @@
|
||||
#include "_core.hpp"
|
||||
|
||||
#include "debug.hpp"
|
||||
#include "engine.hpp"
|
||||
#include "input.hpp"
|
||||
#include "render.hpp"
|
||||
#include "render.inl"
|
||||
|
||||
@@ -13,6 +13,7 @@
|
||||
namespace e2d
|
||||
{
|
||||
class debug;
|
||||
class engine;
|
||||
class mouse;
|
||||
class keyboard;
|
||||
class input;
|
||||
|
||||
18
headers/enduro2d/core/engine.hpp
Normal file
18
headers/enduro2d/core/engine.hpp
Normal file
@@ -0,0 +1,18 @@
|
||||
/*******************************************************************************
|
||||
* This file is part of the "Enduro2D"
|
||||
* For conditions of distribution and use, see copyright notice in LICENSE.md
|
||||
* Copyright (C) 2018 Matvey Cherevko
|
||||
******************************************************************************/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "_core.hpp"
|
||||
|
||||
namespace e2d
|
||||
{
|
||||
class engine final : public module<engine> {
|
||||
public:
|
||||
engine();
|
||||
~engine() noexcept final;
|
||||
};
|
||||
}
|
||||
18
sources/enduro2d/core/engine.cpp
Normal file
18
sources/enduro2d/core/engine.cpp
Normal file
@@ -0,0 +1,18 @@
|
||||
/*******************************************************************************
|
||||
* This file is part of the "Enduro2D"
|
||||
* For conditions of distribution and use, see copyright notice in LICENSE.md
|
||||
* Copyright (C) 2018 Matvey Cherevko
|
||||
******************************************************************************/
|
||||
|
||||
#include <enduro2d/core/engine.hpp>
|
||||
|
||||
namespace
|
||||
{
|
||||
using namespace e2d;
|
||||
}
|
||||
|
||||
namespace e2d
|
||||
{
|
||||
engine::engine() = default;
|
||||
engine::~engine() noexcept = default;
|
||||
}
|
||||
Reference in New Issue
Block a user