summaryrefslogtreecommitdiffstats
path: root/src/MobFamilyCollecter.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/MobFamilyCollecter.h')
-rw-r--r--src/MobFamilyCollecter.h15
1 files changed, 5 insertions, 10 deletions
diff --git a/src/MobFamilyCollecter.h b/src/MobFamilyCollecter.h
index 70e908d4b..afeb4b769 100644
--- a/src/MobFamilyCollecter.h
+++ b/src/MobFamilyCollecter.h
@@ -8,10 +8,10 @@
/** This class is used to collect the list of mobs for each family
-*/
+ */
class cMobFamilyCollecter
{
-public :
+ public:
typedef const std::set<cMonster::eFamily> tMobFamilyList;
// collect a mob
@@ -20,11 +20,6 @@ public :
// return the number of mobs for this family
int GetNumberOfCollectedMobs(cMonster::eFamily a_Family);
-protected :
- std::map<cMonster::eFamily, std::set<cMonster *> > m_Mobs;
-
-} ;
-
-
-
-
+ protected:
+ std::map<cMonster::eFamily, std::set<cMonster *>> m_Mobs;
+};