mirror of
https://github.com/d0zingcat/ore.git
synced 2026-05-14 07:26:51 +00:00
12 lines
194 B
Rust
12 lines
194 B
Rust
use steel::*;
|
|
|
|
#[repr(C)]
|
|
#[derive(Clone, Copy, Debug, PartialEq, Pod, Zeroable)]
|
|
pub struct MineEvent {
|
|
pub difficulty: u64,
|
|
pub reward: u64,
|
|
pub timing: i64,
|
|
}
|
|
|
|
event!(MineEvent);
|