-
How can I see if a Plugin was added? |
Beta Was this translation helpful? Give feedback.
Answered by
BD103
Oct 29, 2024
Replies: 1 comment
-
let mut app = App::new();
app.add_plugins(MyPlugin);
assert!(app.is_plugin_added::<MyPlugin>()); |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
simbleau
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
App::is_plugin_added()
should be what you're looking for!