Moving tiles related stuff into the project window

This commit is contained in:
Justin Scofield
2022-06-12 13:17:59 -04:00
parent 9b905a48e4
commit 9d7f0aa0b4
5 changed files with 47 additions and 74 deletions

View File

@@ -4,6 +4,12 @@
#include <array>
#include <string>
#define TAB_BAR(w) if (ImGui::BeginTabBar(w)) {
#define END_TAB_BAR() ImGui::EndTabBar(); }
#define MENU_BAR() if (ImGui::BeginMenuBar()) {
#define END_MENU_BAR() ImGui::EndMenuBar(); }
namespace yaze {
namespace Application {
namespace Core {

View File

@@ -7,7 +7,6 @@
#include <memory>
#include "Editor/Editor.h"
#include "Events/Event.h"
#include "Renderer.h"
#include "Window.h"
#include "imgui/backends/imgui_impl_sdl.h"