mirror of
https://github.com/LNH-team/pico-launcher.git
synced 2026-06-02 09:06:54 +02:00
Add ability to set the position of the top screen cover image in custom themes
This commit is contained in:
14
arm9/source/themes/custom/CustomTopCoverInfo.h
Normal file
14
arm9/source/themes/custom/CustomTopCoverInfo.h
Normal 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;
|
||||
};
|
||||
Reference in New Issue
Block a user