aboutsummaryrefslogtreecommitdiff
path: root/ui/single/resources-cfg.rs
diff options
context:
space:
mode:
authorEmil Fresk <emil.fresk@gmail.com>2020-10-08 17:33:42 +0200
committerEmil Fresk <emil.fresk@gmail.com>2020-10-08 17:33:42 +0200
commitc83b15b643346c54f09ef130b5abd5ca31abfcd5 (patch)
treeb1b350b834c243e05f4328d1b4922f1d9e0f373c /ui/single/resources-cfg.rs
parente8b4fa7b32cf044428971f22e01428ff9cccff3c (diff)
parent36781cdd890752d6876623d8802b860e950b24eb (diff)
Merge branch 'master' into spawn_experiment
Diffstat (limited to 'ui/single/resources-cfg.rs')
-rw-r--r--ui/single/resources-cfg.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/ui/single/resources-cfg.rs b/ui/single/resources-cfg.rs
index f2569e9..2ba65a0 100644
--- a/ui/single/resources-cfg.rs
+++ b/ui/single/resources-cfg.rs
@@ -43,12 +43,14 @@ mod app {
}
#[init(resources = [o1, o4, o5, o6, s3])]
- fn init(c: init::Context) {
+ fn init(c: init::Context) -> init::LateResources {
c.resources.o1;
c.resources.o4;
c.resources.o5;
c.resources.o6;
c.resources.s3;
+
+ init::LateResources {}
}
#[idle(resources = [o2, &o4, s1, &s3])]