nemicosm/src/object.rs

6 lines
73 B
Rust

struct Object {
handler: Handler,
}
type Handler = fn(u32, &[u32]);