Add ability to set the position of the top screen cover image in custom themes

This commit is contained in:
Gericom
2026-04-04 10:01:15 +02:00
parent 127de36b1c
commit bec797ffe7
11 changed files with 62 additions and 4 deletions

View File

@@ -0,0 +1,14 @@
#pragma once
#include "core/math/Point.h"
class CustomTopCoverInfo
{
public:
CustomTopCoverInfo(const Point& position)
: _position(position) { }
const Point& GetPosition() const { return _position; }
private:
Point _position;
};