Coverage report for ai


src/
File: src/run/listeners/listenCancel.cpp
Date: 2024-06-25 10:57:00
Lines:
0/5
0.0%
Functions:
0/1
0.0%
Branches:
0/6
0.0%

Line Branch Exec Source
1 /*
2 ** EPITECH PROJECT, 2024
3 ** zappy/ai
4 ** File description:
5 ** ListenBroadcastResponse.cpp
6 */
7
8 #include "../../bots/ABot.hpp"
9
10 void ABot::listenCancel(const std::string &response)
11 {
12 if (response == "ko")
13 {
14 PRINT_ALERT("listenCancel\n");
15 _state.state = STANDARD;
16 }
17 }
18