16 lines
293 B
C++
16 lines
293 B
C++
#include "Player.hpp"
|
|
|
|
class Profiteer : public Player {
|
|
public:
|
|
Profiteer() {
|
|
name = "Profiteer";
|
|
}
|
|
|
|
void new_game() override { ; }
|
|
void push_result(reaction_t opponents_last_reaction) override { ; }
|
|
|
|
reaction_t play() override {
|
|
return CONFLICT;
|
|
}
|
|
};
|