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