mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-08-19 05:02:12 -04:00
29 lines
440 B
C++
29 lines
440 B
C++
#pragma once
|
|
|
|
#if BOREALIS_HAS_SENTRY
|
|
|
|
#include "component.hpp"
|
|
#include "window.hpp"
|
|
|
|
#include <memory>
|
|
#include <vector>
|
|
|
|
namespace dusk::ui {
|
|
|
|
class CrashReportWindow : public WindowSmall {
|
|
public:
|
|
CrashReportWindow();
|
|
|
|
bool focus() override;
|
|
|
|
protected:
|
|
bool handle_nav_command(Rml::Event& event, NavCommand cmd) override;
|
|
|
|
private:
|
|
std::vector<std::unique_ptr<Component>> mButtons;
|
|
};
|
|
|
|
} // namespace dusk::ui
|
|
|
|
#endif
|