From cd0881578ff40576e53c18a199f383fbebe21baa Mon Sep 17 00:00:00 2001 From: gbrochar Date: Thu, 18 May 2023 12:53:54 +0200 Subject: [PATCH] feat(): file_drop poc --- src/main.rs | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/main.rs b/src/main.rs index 0e08c42..c18dd99 100644 --- a/src/main.rs +++ b/src/main.rs @@ -40,6 +40,7 @@ fn main() { .add_plugin(HelloPlugin) .insert_resource(WinitSettings::desktop_app()) .add_startup_system(setup) + .add_system(file_drop) .add_system(button_system) .run(); } @@ -51,6 +52,14 @@ fn hello_world(time: Res