Add option to start replay on fullscreen

This commit is contained in:
dec05eba
2024-11-14 00:25:37 +01:00
parent 4ba1e814b7
commit d2f6b0738b
12 changed files with 218 additions and 41 deletions

View File

@@ -5,11 +5,11 @@
namespace gsr {
class LineSeparator : public Widget {
public:
enum class Type {
enum class Orientation {
HORIZONTAL
};
LineSeparator(Type type, float width);
LineSeparator(Orientation orientation, float width);
LineSeparator(const LineSeparator&) = delete;
LineSeparator& operator=(const LineSeparator&) = delete;
@@ -18,7 +18,7 @@ namespace gsr {
mgl::vec2f get_size() override;
private:
Type type;
Orientation orientation;
float width;
};
}