Neale Pickett
·
2024-06-09
picker.h
1#pragma once
2
3#include <stdint.h>
4
5class Picker {
6public:
7 Picker();
8 bool Pick(uint8_t);
9private:
10 int val;
11};
git clone https://git.woozle.org/neale/wallart.git
1#pragma once
2
3#include <stdint.h>
4
5class Picker {
6public:
7 Picker();
8 bool Pick(uint8_t);
9private:
10 int val;
11};