mirror of
https://github.com/LNH-team/pico-launcher.git
synced 2026-06-02 17:16:57 +02:00
15 lines
252 B
C++
15 lines
252 B
C++
#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;
|
|
};
|