mirror of
https://github.com/jorenchik/testing-spring-2024.git
synced 2025-10-21 20:10:36 +00:00
16 lines
261 B
C++
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
|