Coverage report for ai


src/
File: src/run/patterns/SearchRessources/SearchStones.cpp
Date: 2024-06-25 10:57:00
Lines:
0/18
0.0%
Functions:
0/6
0.0%
Branches:
0/12
0.0%

Line Branch Exec Source
1 /*
2 ** EPITECH PROJECT, 2024
3 ** zappy/ai
4 ** File description:
5 ** Survive.cpp
6 */
7
8 #include "../../../bots/ABotPattern.hpp"
9 #include <functional>
10
11 void ABotPattern::searchLinemate()
12 {
13 searchAndTakeRessource("linemate");
14 }
15
16 void ABotPattern::searchDeraumere()
17 {
18 searchAndTakeRessource("deraumere");
19 }
20
21 void ABotPattern::searchSibur()
22 {
23 searchAndTakeRessource("sibur");
24 }
25
26 void ABotPattern::searchMendiane()
27 {
28 searchAndTakeRessource("mendiane");
29 }
30
31 void ABotPattern::searchPhiras()
32 {
33 searchAndTakeRessource("phiras");
34 }
35
36 void ABotPattern::searchThystame()
37 {
38 searchAndTakeRessource("thystame");
39 }
40