dummy imgui utils

This commit is contained in:
2019-12-12 00:43:41 +07:00
parent 5d87faf916
commit 6371effc33
3 changed files with 34 additions and 0 deletions

View File

@@ -17,6 +17,7 @@
#include "filesystem.inl"
#include "font.hpp"
#include "image.hpp"
#include "imgui_utils.hpp"
#include "intrusive_list.hpp"
#include "intrusive_ptr.hpp"
#include "json_utils.hpp"

View File

@@ -0,0 +1,17 @@
/*******************************************************************************
* This file is part of the "Enduro2D"
* For conditions of distribution and use, see copyright notice in LICENSE.md
* Copyright (C) 2018-2019, by Matvey Cherevko (blackmatov@gmail.com)
******************************************************************************/
#pragma once
#include "_utils.hpp"
#include <3rdparty/imgui/imgui.h>
#include <3rdparty/imgui/imgui_stdlib.h>
#include <3rdparty/imgui/imgui_internal.h>
namespace e2d::imgui_utils
{
}

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-2019, by Matvey Cherevko (blackmatov@gmail.com)
******************************************************************************/
#include <enduro2d/utils/imgui_utils.hpp>
namespace
{
using namespace e2d;
}
namespace e2d::imgui_utils
{
}