wallart/picker.h

12 lines
121 B
C++

#pragma once
#include <stdint.h>
class Picker {
public:
Picker();
bool Pick(uint8_t);
private:
int val;
};