add Copy trait to BitmaskCharacter

This commit is contained in:
Gered 2023-11-11 19:34:41 -05:00
parent 053f95a929
commit 389e27afe0

View file

@ -57,7 +57,7 @@ pub trait Font {
PixelType: Pixel;
}
#[derive(Debug, Clone, Eq, PartialEq)]
#[derive(Debug, Copy, Clone, Eq, PartialEq)]
pub struct BitmaskCharacter {
bytes: [u8; CHAR_HEIGHT],
bounds: Rect,