From 9bc90bcff5bec4fbb03a568f59e14b1b016e0e44 Mon Sep 17 00:00:00 2001 From: troido Date: Mon, 13 Apr 2020 11:14:23 +0200 Subject: doors now use new Build component instead of Loot --- src/components/mod.rs | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/components/mod.rs') diff --git a/src/components/mod.rs b/src/components/mod.rs index 530cda3..347bb40 100644 --- a/src/components/mod.rs +++ b/src/components/mod.rs @@ -227,4 +227,12 @@ pub struct CreationTime { pub struct Item(pub ItemId); +#[derive(Component, Debug, Clone)] +#[storage(HashMapStorage)] +pub struct Build { + pub obj: Template +} + + + -- cgit