1
2
3
4
5
6
7
8
9
10
11
mod classic;
mod ironbow;

pub(crate) use classic::CLASSIC;
pub(crate) use ironbow::IRONBOW;

#[derive(Copy, Clone)]
pub enum Palette {
    Classic,
    Ironbow,
}