Continuem treballant en els credits

This commit is contained in:
2024-11-25 17:48:25 +01:00
parent a36120cf0c
commit fd7beee5a1
6 changed files with 69 additions and 12 deletions

View File

@@ -38,7 +38,6 @@ struct BalloonFormationUnit
BalloonFormationUnit() : number_of_balloons(0), init() {}
};
using BalloonFormationPool = std::vector<const BalloonFormationUnit *>;
class BalloonFormations
@@ -67,4 +66,5 @@ public:
// Getters
const BalloonFormationPool &getPool(int pool) { return balloon_formation_pool_.at(pool); }
const BalloonFormationUnit &getSet(int pool, int set) { return *balloon_formation_pool_.at(pool).at(set); }
const BalloonFormationUnit &getSet(int set) const { return balloon_formation_.at(set); }
};