From 77b43093c7b157e8ff0b68af4efd0eff226da35a Mon Sep 17 00:00:00 2001 From: Your Name Date: Sun, 2 May 2021 10:12:49 -0400 Subject: Added damage and heal commands --- src/rules.cc | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'src/rules.cc') diff --git a/src/rules.cc b/src/rules.cc index a9ca395..15dcb34 100644 --- a/src/rules.cc +++ b/src/rules.cc @@ -30,4 +30,14 @@ namespace rules { {"Performance", "cha"}, {"Persuasion", "cha"} }; + + std::ostream& operator<<(std::ostream& os, const Ability& a) { + os << std::string(a); + return os; + } + + std::ostream& operator<<(std::ostream& os, const Skill& s) { + os << std::string(s); + return os; + } } -- cgit v1.2.3