Files
2026-03-30 15:33:19 -06:00

18 lines
357 B
C++

#pragma once
#include "ship/window/gui/GuiWindow.h"
namespace Ship {
class SDLAddRemoveDeviceEventHandler : public GuiWindow {
public:
using GuiWindow::GuiWindow;
virtual ~SDLAddRemoveDeviceEventHandler();
protected:
void InitElement() override;
void DrawElement() override;
void UpdateElement() override;
};
} // namespace Ship