Ajout de qualificateurs sur les fonctions getObjects() & getZone()
This commit is contained in:
parent
462656e99a
commit
ef206a4ef5
|
@ -49,12 +49,12 @@ public:
|
||||||
/**
|
/**
|
||||||
* Récupère la liste des objets
|
* Récupère la liste des objets
|
||||||
*/
|
*/
|
||||||
std::vector<ObjectPtr> getObjects();
|
std::vector<ObjectPtr>& getObjects();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Récupère la zone du niveau
|
* Récupère la zone du niveau
|
||||||
*/
|
*/
|
||||||
std::vector<std::pair<float, float>> getZone();
|
const std::vector<std::pair<float, float>>& getZone();
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -131,10 +131,10 @@ std::string Level::getName() {
|
||||||
return name;
|
return name;
|
||||||
}
|
}
|
||||||
|
|
||||||
std::vector<ObjectPtr> Level::getObjects() {
|
std::vector<ObjectPtr>& Level::getObjects() {
|
||||||
return objects;
|
return objects;
|
||||||
}
|
}
|
||||||
|
|
||||||
std::vector<std::pair<float, float>> Level::getZone() {
|
const std::vector<std::pair<float, float>>& Level::getZone() {
|
||||||
return zone;
|
return zone;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue