7#include "game/gamedelegate.h"
8#include "game/player.h"
9#include "core/heatmap.h"
14 std::array<std::unique_ptr<HeatMap>, PLAYER_COUNT> location;
22 PlayerColor loser,
bool was_final)
override;
25 PlayerColor bed)
override;
29 void tick(
const Game& game)
override;
31 static std::shared_ptr<v1> make();
Definition gamedelegate.h:12
void on_game_end(const Game &game) override
Definition v1.cpp:41
void tick(const Game &game) override
Definition v1.cpp:43
void on_game_start(const Game &game) override
Definition v1.cpp:10
void on_players_match(const Game &game, PlayerColor victor, PlayerColor loser, bool was_final) override
Definition v1.cpp:35
void on_bed_broken(const Game &game, PlayerColor breaker, PlayerColor bed) override
Definition v1.cpp:38