mirror of
https://github.com/HarbourMasters/SpaghettiKart
synced 2026-08-03 17:19:01 -04:00
15 lines
324 B
C++
15 lines
324 B
C++
#pragma once
|
|
|
|
#include <libultraship/libultraship.h>
|
|
|
|
namespace Editor {
|
|
class ContentBrowserWindow : public Ship::GuiWindow {
|
|
public:
|
|
using Ship::GuiWindow::GuiWindow;
|
|
~ContentBrowserWindow();
|
|
protected:
|
|
void InitElement() override {};
|
|
void DrawElement() override;
|
|
void UpdateElement() override {};
|
|
};
|
|
} |