dummy render module

This commit is contained in:
2018-09-28 17:55:17 +07:00
parent 433578975d
commit de233e8ad1
5 changed files with 47 additions and 0 deletions

View File

@@ -10,5 +10,6 @@
#include "debug.hpp"
#include "input.hpp"
#include "render.hpp"
#include "vfs.hpp"
#include "window.hpp"

View File

@@ -16,6 +16,7 @@ namespace e2d
class mouse;
class keyboard;
class input;
class render;
class vfs;
class window;
}

View 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();
};
}

View 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() {
}
}

View 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"){
}