1
0
Fork 0

Remove unused private variables in expression.h

This commit is contained in:
Logan Detrick 2025-12-07 13:23:40 -08:00
parent 78d91947f6
commit f2bfc898b2
1 changed files with 0 additions and 9 deletions

View File

@ -36,17 +36,8 @@ class Expression : public RefCounted {
GDCLASS(Expression, RefCounted);
private:
struct Input {
Variant::Type type = Variant::NIL;
String name;
};
Vector<Input> inputs;
Variant::Type output_type = Variant::NIL;
String expression;
bool sequenced = false;
int str_ofs = 0;
bool expression_dirty = false;