mirror of
https://github.com/d0zingcat/ore.git
synced 2026-05-14 15:10:13 +00:00
11 lines
185 B
Rust
11 lines
185 B
Rust
use steel::*;
|
|
|
|
#[derive(Debug, Error, Clone, Copy, PartialEq, Eq, IntoPrimitive)]
|
|
#[repr(u32)]
|
|
pub enum OreError {
|
|
#[error("Placeholder error")]
|
|
Dummy = 0,
|
|
}
|
|
|
|
error!(OreError);
|