Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Suppress unused method warning when using custom-godot feature
When `custom-godot` feature is used during build, the following warning gets produced: ``` warning: function `godot_version` is never used | 50 | fn godot_version() -> Option<semver::Version> { | ^^^^^^^^^^^^^ | ``` This PR adds `#[allow(unused)]` directive to suppress this warning, since it becomes unused when `custom-godot` feature is enabled.
- Loading branch information