Allow submitting documentation to the Godot editor

This commit is contained in:
David Snopek
2024-01-25 08:54:58 -06:00
parent 54fe2f9891
commit a434850069
8 changed files with 163 additions and 2 deletions

View File

@@ -412,6 +412,7 @@ public:
method = p_method;
generate_argument_types(sizeof...(P));
set_argument_count(sizeof...(P));
set_const(true);
}
};
@@ -578,6 +579,7 @@ public:
generate_argument_types(sizeof...(P));
set_argument_count(sizeof...(P));
set_return(true);
set_const(true);
}
};