Skip to content

Commit 0eb712b

Browse files
committed
Remove unnecessary type
1 parent b41ddbb commit 0eb712b

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

omp-gdk/src/runtime.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@ use std::{
44
rc::Rc,
55
};
66

7-
type Script = dyn Events + 'static;
8-
type OMPRSModule = Rc<RefCell<Script>>;
7+
type OMPRSModule = Rc<RefCell<dyn Events + 'static>>;
98

109
thread_local! {
1110
/// Runtime global object that implements all the callbacks and gamemode data

0 commit comments

Comments
 (0)