diff options
author | Your Name <you@example.com> | 2021-05-02 10:12:49 -0400 |
---|---|---|
committer | Your Name <you@example.com> | 2021-05-02 10:12:49 -0400 |
commit | 77b43093c7b157e8ff0b68af4efd0eff226da35a (patch) | |
tree | af051e78ebe6c26ea373b50fb266935e0b51f9fa /src/rules.h | |
parent | 9e6936d325751a7e0670e8cc6aa61faf048cb241 (diff) | |
download | dmtool-77b43093c7b157e8ff0b68af4efd0eff226da35a.tar.gz dmtool-77b43093c7b157e8ff0b68af4efd0eff226da35a.tar.bz2 dmtool-77b43093c7b157e8ff0b68af4efd0eff226da35a.zip |
Added damage and heal commands
Diffstat (limited to 'src/rules.h')
-rw-r--r-- | src/rules.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/rules.h b/src/rules.h index d49f17c..18cdef0 100644 --- a/src/rules.h +++ b/src/rules.h @@ -100,4 +100,7 @@ namespace rules { static const std::map<std::string, std::string> skill2ability; }; + + std::ostream& operator<<(std::ostream& os, const Ability& a); + std::ostream& operator<<(std::ostream& os, const Skill& s); } |