testing-spring-2024/src/role.hh
2024-03-14 00:48:16 +02:00

16 lines
261 B
C++

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