mirror of
https://github.com/daveallie/crosspoint-reader.git
synced 2026-02-04 14:47:37 +03:00
18 lines
453 B
C++
18 lines
453 B
C++
#pragma once
|
|
#include <functional>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include "../ListSelectionActivity.h"
|
|
|
|
class ScreenMarginSelectionActivity final : public ListSelectionActivity {
|
|
std::vector<std::string> options;
|
|
|
|
protected:
|
|
void loadItems() override;
|
|
|
|
public:
|
|
explicit ScreenMarginSelectionActivity(GfxRenderer& renderer, MappedInputManager& mappedInput,
|
|
const std::function<void()>& onBack);
|
|
};
|