pub trait SystemParam: PropertyId { }
Expand description
A SystemParam
can be used to pass external data into a System
. For example, a render
canvas, delta time, input processing information, etc.
Note: All user-defined SystemParam
s must derive this trait via #[derive(SystemParam)]
.