#if !defined(_DECISION_H)
#define _DECISION_H

enum Decision {cooperate = 0, defect = 1};

extern int payoffFor(Decision mine, Decision yours);
    // EFFECT: return the payoff for me if I decided mine and you yours.
#endif

