1//! Definitions of Bevy's error codes that might occur at runtime. 2//! 3//! These either manifest as a warning or a panic. 4 5#[doc = include_str!("../B0001.md")] 6pub struct B0001; 7 8#[doc = include_str!("../B0002.md")] 9pub struct B0002; 10 11#[doc = include_str!("../B0003.md")] 12pub struct B0003; 13 14#[doc = include_str!("../B0004.md")] 15pub struct B0004; 16 17