pub trait GameObjectBoxClone {
    fn clone_game_object(&self) -> Box<dyn GameObject>;
}
Expand description

Allows Box to be clonable

Required methods

Implementors