blob: cb29b4001ed4e204f7a64550313ad15fddd25798 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#pragma once
#include <libultraship/libultraship.h>
#ifdef __cplusplus
class ModMenuWindow : public Ship::GuiWindow {
public:
using GuiWindow::GuiWindow;
void InitElement() override;
void DrawElement() override;
void UpdateElement() override{};
};
#endif
|