| 5 | #include "core/variant/variant.h" |
| 6 | |
| 7 | void ComponentDynamicExposer::_bind_methods() { |
| 8 | ClassDB::bind_method(D_METHOD("is_mutable"), &ComponentDynamicExposer::is_mutable); |
| 9 | ClassDB::bind_method(D_METHOD("is_valid"), &ComponentDynamicExposer::is_valid); |
| 10 | } |
| 11 | |
| 12 | void ComponentDynamicExposer::init(uint32_t p_identifier, bool p_mut) { |
| 13 | component_id = p_identifier; |
nothing calls this directly
no outgoing calls
no test coverage detected