17 lines
277 B
Rust
17 lines
277 B
Rust
|
#[derive(GodotClass)]
|
||
|
#[class(tool, init, editor_plugin, base=EditorPlugin)]
|
||
|
|
||
|
struct MiniEditorPlugin {
|
||
|
base: Base<EditorPlugin>,
|
||
|
}
|
||
|
|
||
|
#[godot_api]
|
||
|
impl IEditorPlugin for MiniEditorPlugin {
|
||
|
fn enter_tree(&mut self) {
|
||
|
|
||
|
}
|
||
|
|
||
|
fn exit_tree(&mut self) {
|
||
|
|
||
|
}
|
||
|
}
|