8 lines
187 B
C++
8 lines
187 B
C++
#pragma once
|
|
|
|
#include <variant>
|
|
|
|
struct IkarusValue {
|
|
bool indeterminate;
|
|
std::variant<struct IkarusToggleValue *, struct IkarusNumberValue *, struct IkarusTextValue *> data;
|
|
};
|