Coverage report for ai


src/
File: src/environment/Tile.hpp
Date: 2024-06-25 10:57:00
Lines:
1/1
100.0%
Functions:
0/0
-%
Branches:
3/7
42.9%

Line Branch Exec Source
1 /*
2 ** EPITECH PROJECT, 2024
3 ** zappy/ai
4 ** File description:
5 ** Tile.hpp
6 */
7
8 #ifndef TILE_HPP_
9 #define TILE_HPP_
10
11 #include "../ressources/Ressources.hpp"
12
13
3/7
✓ Branch 1 taken 1 times.
✗ Branch 2 not taken.
✗ Branch 3 not taken.
✓ Branch 4 taken 3 times.
✓ Branch 5 taken 1 times.
✗ Branch 6 not taken.
✗ Branch 7 not taken.
5 class Tile
14 {
15 public:
16 Tile(int x, int y, unsigned int distance, Ressources ressources);
17 Tile();
18 ~Tile();
19 int x;
20 int y;
21 unsigned int distance;
22 Ressources ressources;
23 };
24
25 #endif // TILE_HPP_
26