diff --git a/includes/organisme.hpp b/includes/organisme.hpp index f0367f0..19802fc 100644 --- a/includes/organisme.hpp +++ b/includes/organisme.hpp @@ -17,6 +17,9 @@ class Organisme { int m_index; // Location dans l'univers + // Renvoie un index libre + int recuperationIndexLibre(const int); + public: const int ID; // ID unique pour chaque organisme @@ -36,9 +39,6 @@ class Organisme { // Renvoie les positions exact de l'organisme dans l'univers std::pair> position(const int) const noexcept; - - // Renvoie un index libre - int recuperationIndexLibre(const int); }; #endif