Changement des dépendances

This commit is contained in:
Mylloon 2022-04-10 22:50:56 +02:00
parent bc629b2374
commit 8c06ac5dde
Signed by: Anri
GPG key ID: A82D63DFF8D1317F
3 changed files with 3 additions and 3 deletions

View file

@ -1,6 +1,8 @@
#ifndef ECOSYSTEME_EVENEMENT_HPP #ifndef ECOSYSTEME_EVENEMENT_HPP
#define ECOSYSTEME_EVENEMENT_HPP 1 #define ECOSYSTEME_EVENEMENT_HPP 1
#include <iostream>
#include "../includes/univers.hpp" #include "../includes/univers.hpp"
#include "../includes/mouton.hpp" #include "../includes/mouton.hpp"
#include "../includes/loup.hpp" #include "../includes/loup.hpp"

View file

@ -2,6 +2,7 @@
#define ECOSYSTEME_ORGANISME_HPP 1 #define ECOSYSTEME_ORGANISME_HPP 1
#include <map> #include <map>
#include <system_error>
class Organisme { class Organisme {
inline static int m_total_ID; // permet d'incrémenter de 1 l'ID de chaque organisme inline static int m_total_ID; // permet d'incrémenter de 1 l'ID de chaque organisme

View file

@ -1,10 +1,7 @@
#ifndef ECOSYSTEME_UNIVERS_HPP #ifndef ECOSYSTEME_UNIVERS_HPP
#define ECOSYSTEME_UNIVERS_HPP 1 #define ECOSYSTEME_UNIVERS_HPP 1
#include <iostream>
#include <vector>
#include <algorithm> #include <algorithm>
#include <random>
#include "animal.hpp" #include "animal.hpp"
#include "organisme.hpp" #include "organisme.hpp"