testing-spring-2024/src/modules/action.hh
2024-03-14 01:43:19 +02:00

14 lines
236 B
C++

#ifndef ACTION_HH
#define ACTION_HH
#include <string>
struct Action {
std::string name;
bool has_target;
Action(std::string name, bool has_target);
bool operator==(const Action &other) const;
};
#endif // !ACTION_HH