#ifndef ROLE_HH #define ROLE_HH #include "action.hh" #include #include struct Role { std::vector actions; Role(std::initializer_list actions); Role(std::vector actions); }; #endif // !ROLE_HH