mirror of
https://github.com/enduro2d/enduro2d.git
synced 2026-03-22 04:44:09 +07:00
dummy imgui utils
This commit is contained in:
@@ -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"
|
||||
|
||||
17
headers/enduro2d/utils/imgui_utils.hpp
Normal file
17
headers/enduro2d/utils/imgui_utils.hpp
Normal 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
|
||||
{
|
||||
}
|
||||
16
sources/enduro2d/utils/imgui_utils.cpp
Normal file
16
sources/enduro2d/utils/imgui_utils.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-2019, by Matvey Cherevko (blackmatov@gmail.com)
|
||||
******************************************************************************/
|
||||
|
||||
#include <enduro2d/utils/imgui_utils.hpp>
|
||||
|
||||
namespace
|
||||
{
|
||||
using namespace e2d;
|
||||
}
|
||||
|
||||
namespace e2d::imgui_utils
|
||||
{
|
||||
}
|
||||
Reference in New Issue
Block a user