summaryrefslogtreecommitdiff
path: root/src/fromtoparameter.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/fromtoparameter.rs')
-rw-r--r--src/fromtoparameter.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/fromtoparameter.rs b/src/fromtoparameter.rs
index 180632f..41665f4 100644
--- a/src/fromtoparameter.rs
+++ b/src/fromtoparameter.rs
@@ -10,7 +10,7 @@ use crate::{
Sprite,
ItemId,
RoomId,
- components::{Trigger},
+ components::{Trigger, Stat, Faction, Flag},
Timestamp
};
@@ -102,6 +102,9 @@ macro_rules! fromtostr {
}
fromtostr!(Trigger);
+fromtostr!(Stat);
+fromtostr!(Faction);
+fromtostr!(Flag);
impl<T> FromToParameter for Vec<T>
where T: FromToParameter {