18 lines
296 B
C++
18 lines
296 B
C++
#ifndef SHADE_H
|
|
#define SHADE_H
|
|
|
|
#include <stdint.h>
|
|
#include <string>
|
|
|
|
struct Shade {
|
|
uint16_t ID;
|
|
std::string key;
|
|
std::string friendlyName;
|
|
int8_t lastTargetPosition;
|
|
int8_t lastPosition;
|
|
uint8_t samePositionCount;
|
|
uint8_t positionFetchCount;
|
|
void* timer;
|
|
};
|
|
|
|
#endif // SHADE_H
|