summaryrefslogtreecommitdiff
path: root/src/components/mod.rs
diff options
context:
space:
mode:
authortroido <troido@protonmail.com>2020-04-13 11:14:23 +0200
committertroido <troido@protonmail.com>2020-04-13 11:14:23 +0200
commit9bc90bcff5bec4fbb03a568f59e14b1b016e0e44 (patch)
treedfb9da2e9b5024aa34005dfe1796046e9b644d8c /src/components/mod.rs
parent9d6348a8c8d24bda6c229f72662c8eddc101e92b (diff)
doors now use new Build component instead of Loot
Diffstat (limited to 'src/components/mod.rs')
-rw-r--r--src/components/mod.rs8
1 files changed, 8 insertions, 0 deletions
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
+}
+
+
+