Derive Copy and Clone for Collision (#8121)

This commit is contained in:
Devin Gunay 2023-03-17 21:55:31 -07:00 committed by GitHub
parent aefe1f0739
commit f255872c1e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,7 +2,7 @@
use bevy_math::{Vec2, Vec3};
#[derive(Debug, PartialEq, Eq)]
#[derive(Debug, PartialEq, Eq, Copy, Clone)]
pub enum Collision {
Left,
Right,