Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bevy_reflect: Add Reflectable trait #5772

Merged
merged 4 commits into from
Sep 18, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update crates/bevy_reflect/src/reflectable.rs
Co-authored-by: Alice Cecile <alice.i.cecile@gmail.com>
  • Loading branch information
MrGVSV and alice-i-cecile committed Sep 18, 2024
commit 2d179e1ac483a57c178f86382a453fab5af18561
2 changes: 1 addition & 1 deletion crates/bevy_reflect/src/reflectable.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use crate::{GetTypeRegistration, Reflect, TypePath, Typed};

/// A catch-all trait that is bound by the core reflection traits,
/// useful for simpler reflection-based generic type bounds.
/// useful to simplify reflection-based generic type bounds.
///
/// You do _not_ need to implement this trait manually.
/// It is automatically implemented for all types that implement its supertraits.
Expand Down