1
0
mirror of https://github.com/godotengine/godot.git synced 2025-12-31 18:41:20 +00:00

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

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;