Skip to content

Commit

Permalink
Derive Copy and Clone for Collision (#8121)
Browse files Browse the repository at this point in the history
  • Loading branch information
dgunay committed Mar 18, 2023
1 parent aefe1f0 commit f255872
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/bevy_sprite/src/collide_aabb.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

use bevy_math::{Vec2, Vec3};

#[derive(Debug, PartialEq, Eq)]
#[derive(Debug, PartialEq, Eq, Copy, Clone)]
pub enum Collision {
Left,
Right,
Expand Down

0 comments on commit f255872

Please sign in to comment.