diff --git a/headers/enduro2d/high/_all.hpp b/headers/enduro2d/high/_all.hpp index af4d1a67..83f9bdb3 100644 --- a/headers/enduro2d/high/_all.hpp +++ b/headers/enduro2d/high/_all.hpp @@ -29,6 +29,7 @@ #include "systems/render_system.hpp" +#include "address.hpp" #include "atlas.hpp" #include "library.hpp" #include "library.inl" diff --git a/headers/enduro2d/high/address.hpp b/headers/enduro2d/high/address.hpp new file mode 100644 index 00000000..0224fb36 --- /dev/null +++ b/headers/enduro2d/high/address.hpp @@ -0,0 +1,13 @@ +/******************************************************************************* + * This file is part of the "Enduro2D" + * For conditions of distribution and use, see copyright notice in LICENSE.md + * Copyright (C) 2018-2019 Matvey Cherevko + ******************************************************************************/ + +#pragma once + +#include "_high.hpp" + +namespace e2d { namespace address +{ +}} diff --git a/sources/enduro2d/high/address.cpp b/sources/enduro2d/high/address.cpp new file mode 100644 index 00000000..63bc9b87 --- /dev/null +++ b/sources/enduro2d/high/address.cpp @@ -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-2019 Matvey Cherevko + ******************************************************************************/ + +#include + +namespace e2d { namespace address +{ +}} diff --git a/untests/sources/untests_high/address.cpp b/untests/sources/untests_high/address.cpp new file mode 100644 index 00000000..8e6a9a69 --- /dev/null +++ b/untests/sources/untests_high/address.cpp @@ -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-2019 Matvey Cherevko + ******************************************************************************/ + +#include "_high.hpp" +using namespace e2d; + +TEST_CASE("address") { +} diff --git a/untests/sources/untests_high/starter.cpp b/untests/sources/untests_high/starter.cpp index 9becbba7..5143dbdb 100644 --- a/untests/sources/untests_high/starter.cpp +++ b/untests/sources/untests_high/starter.cpp @@ -4,8 +4,6 @@ * Copyright (C) 2018 Matvey Cherevko ******************************************************************************/ -#include - #include "_high.hpp" using namespace e2d;