library: core: scene: derive Debug and PartialEq

This commit is contained in:
Bruno BELANYI 2020-03-18 15:53:25 +01:00
parent bfa9aa22dc
commit c8ca438091

View file

@ -12,6 +12,7 @@ use rand::prelude::thread_rng;
use rand::Rng;
/// Represent the scene being rendered.
#[derive(Debug, PartialEq)]
pub struct Scene {
camera: Camera,
lights: LightAggregate,