negotiation-openenv / agents /DummyAgent.cpp
Atishay Jain
Initialize project structure and core architecture interfaces
34dfc61
raw
history blame contribute delete
222 Bytes
#include "../env/State.h"
#include "../env/Action.h"
class DummyAgent {
public:
Action act(const State& state) {
// Placeholder for initial action logic
return Action(ActionType::OFFER, 100);
}
};