mirror of
https://github.com/bevyengine/bevy
synced 2024-11-10 07:04:33 +00:00
Derive Copy and Clone for Collision (#8121)
This commit is contained in:
parent
aefe1f0739
commit
f255872c1e
1 changed files with 1 additions and 1 deletions
|
@ -2,7 +2,7 @@
|
|||
|
||||
use bevy_math::{Vec2, Vec3};
|
||||
|
||||
#[derive(Debug, PartialEq, Eq)]
|
||||
#[derive(Debug, PartialEq, Eq, Copy, Clone)]
|
||||
pub enum Collision {
|
||||
Left,
|
||||
Right,
|
||||
|
|
Loading…
Reference in a new issue