This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| use std::any::Any; | |
| use anyhow::Result; | |
| use bevy::{ | |
| prelude::*, | |
| reflect::{ReflectMut, ReflectOwned, ReflectRef, TypeInfo}, | |
| }; | |
| struct BoxedReflect(Box<dyn Reflect>); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [package] | |
| name = "test-bevy-mirror" | |
| version = "0.1.0" | |
| edition = "2021" | |
| # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | |
| [dependencies] | |
| bevy = { version = "0.9.1", default-features = false, features = [ | |
| "bevy_render", |