mirror of
https://github.com/HarbourMasters/SpaghettiKart
synced 2026-07-10 07:07:17 -04:00
27 lines
563 B
C++
27 lines
563 B
C++
#include "Properties.h"
|
|
#include "port/ui/PortMenu.h"
|
|
#include "UIWidgets.h"
|
|
#include "libultraship/src/Context.h"
|
|
|
|
#include <imgui.h>
|
|
#include <map>
|
|
#include <libultraship/libultraship.h>
|
|
#include <spdlog/fmt/fmt.h>
|
|
#include "spdlog/formatter.h"
|
|
#include <common_structs.h>
|
|
#include <defines.h>
|
|
|
|
#include "engine/editor/Editor.h"
|
|
#include "port/Game.h"
|
|
#include "src/engine/World.h"
|
|
|
|
namespace Editor {
|
|
|
|
PropertiesWindow::~PropertiesWindow() {
|
|
SPDLOG_TRACE("destruct scene explorer window");
|
|
}
|
|
|
|
void PropertiesWindow::DrawElement() {
|
|
}
|
|
}
|