wallart/picker.h

12 lines
121 B
C
Raw Normal View History

#pragma once
#include <stdint.h>
class Picker {
public:
Picker();
bool Pick(uint8_t);
private:
2024-06-09 21:53:19 -06:00
int val;
};