mirror of
https://github.com/enduro2d/enduro2d.git
synced 2025-12-15 08:15:38 +07:00
dummy render module
This commit is contained in:
@@ -10,5 +10,6 @@
|
||||
|
||||
#include "debug.hpp"
|
||||
#include "input.hpp"
|
||||
#include "render.hpp"
|
||||
#include "vfs.hpp"
|
||||
#include "window.hpp"
|
||||
|
||||
@@ -16,6 +16,7 @@ namespace e2d
|
||||
class mouse;
|
||||
class keyboard;
|
||||
class input;
|
||||
class render;
|
||||
class vfs;
|
||||
class window;
|
||||
}
|
||||
|
||||
18
headers/enduro2d/core/render.hpp
Normal file
18
headers/enduro2d/core/render.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 render final : public module<render> {
|
||||
public:
|
||||
render();
|
||||
~render();
|
||||
};
|
||||
}
|
||||
16
sources/enduro2d/core/render.cpp
Normal file
16
sources/enduro2d/core/render.cpp
Normal file
@@ -0,0 +1,16 @@
|
||||
/*******************************************************************************
|
||||
* 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/render.hpp>
|
||||
|
||||
namespace e2d
|
||||
{
|
||||
render::render() {
|
||||
}
|
||||
|
||||
render::~render() {
|
||||
}
|
||||
}
|
||||
11
untests/sources/untests_core/render.cpp
Normal file
11
untests/sources/untests_core/render.cpp
Normal file
@@ -0,0 +1,11 @@
|
||||
/*******************************************************************************
|
||||
* 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 "_core.hpp"
|
||||
using namespace e2d;
|
||||
|
||||
TEST_CASE("render"){
|
||||
}
|
||||
Reference in New Issue
Block a user