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