aboutsummaryrefslogtreecommitdiffstats
path: root/include/components.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2016-10-26 07:43:32 -0400
committerClyne Sullivan <tullivan99@gmail.com>2016-10-26 07:43:32 -0400
commit52de6c2e6c048b84a7665b6fc583b2259bbdd3af (patch)
treefd42df62429b5e7e18d2a04a23e4bc5615f2097a /include/components.hpp
parent8eb1625aea5ccaa07414e699e784440a94277ab0 (diff)
player stuff
Diffstat (limited to 'include/components.hpp')
-rw-r--r--include/components.hpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/components.hpp b/include/components.hpp
index 857236f..becc839 100644
--- a/include/components.hpp
+++ b/include/components.hpp
@@ -75,6 +75,12 @@ struct Health {
int maxHealth;
};
+struct Portal {
+ Portal(std::string tf = "") : toFile(tf) {}
+
+ std::string toFile;
+};
+
/**
* @struct Solid
* @brief Allows an entity to collide with other objects.