mirror of
https://github.com/izzy2lost/2ship2harkinian-Android.git
synced 2026-06-19 01:20:08 -07:00
* imgui * detangle zapdutils * ship namespace * register global factories * readfb * deps * bump submodules * keyframe * bump modules
24 lines
353 B
C++
24 lines
353 B
C++
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
#include <libultraship/classes.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
|