mirror of
https://github.com/0xNikilite/oboromi.git
synced 2026-01-31 01:15:22 +01:00
16 lines
283 B
Rust
16 lines
283 B
Rust
use crate::sys;
|
|
use crate::nn::ServiceTrait;
|
|
pub struct State {
|
|
|
|
}
|
|
impl State {
|
|
pub fn new(state: &mut sys::State) -> Self {
|
|
Self{}
|
|
}
|
|
}
|
|
impl ServiceTrait for State {
|
|
fn run(state: &mut sys::State) {
|
|
state.services.dmnt = Some(State::new(state));
|
|
}
|
|
}
|