mirror of
https://github.com/neocturne/MinedMap.git
synced 2025-03-04 09:13:33 +01:00
resource: impl Ord for Color
Allow using Color in FormattedText.
This commit is contained in:
parent
7f329ac8e7
commit
9375af8d54
1 changed files with 1 additions and 1 deletions
|
@ -38,7 +38,7 @@ pub enum BlockFlag {
|
|||
}
|
||||
|
||||
/// An RGB color with u8 components
|
||||
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Serialize, Deserialize)]
|
||||
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Serialize, Deserialize)]
|
||||
pub struct Color(pub [u8; 3]);
|
||||
|
||||
/// An RGB color with f32 components
|
||||
|
|
Loading…
Add table
Reference in a new issue