eeeh
This commit is contained in:
17
src/main.rs
17
src/main.rs
@ -1,3 +1,16 @@
|
||||
fn main() {
|
||||
println!("Hello, world!");
|
||||
use std::fmt;
|
||||
use std::error::Error;
|
||||
use thiserror::Error;
|
||||
|
||||
struct Event {
|
||||
event_id: u32
|
||||
}
|
||||
|
||||
trait SystemObject {
|
||||
fn get_object_id(&self) -> u32;
|
||||
fn initialize(&mut self) -> Result<(), Box<dyn Error>>;
|
||||
}
|
||||
|
||||
fn main() {
|
||||
println!("Hello World");
|
||||
}
|
||||
|
Reference in New Issue
Block a user