summaryrefslogtreecommitdiff
path: root/mm/2s2h/DeveloperTools/CollisionViewer.h
blob: c25f999d6fbae46c82b635de623079d7fc55ab86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#pragma once

#ifdef __cplusplus
#include <ship/window/gui/GuiWindow.h>

extern "C" {
#endif

void DrawCollisionViewer();

#ifdef __cplusplus
}

class CollisionViewerWindow : public Ship::GuiWindow {
  public:
    using GuiWindow::GuiWindow;

    void InitElement() override;
    void DrawElement() override;
    void UpdateElement() override{};
};

#endif