mirror of
https://github.com/HarbourMasters/SpaghettiKart
synced 2026-07-10 15:14:33 -04:00
26 lines
533 B
C++
26 lines
533 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"
|
|
|
|
namespace Editor {
|
|
|
|
PropertiesWindow::~PropertiesWindow() {
|
|
SPDLOG_TRACE("destruct scene explorer window");
|
|
}
|
|
|
|
void PropertiesWindow::DrawElement() {
|
|
}
|
|
}
|