1
0
cuberite-2a/src/MobFamilyCollecter.h
madmaxoft 7fff12bfac Fixed spaces around single-line comments.
There should be at least two spaces in front and one space after //-style comments.
2014-07-17 19:13:23 +02:00

40 lines
698 B
C++

#pragma once
#include <map>
#include <set>
#include "BlockID.h"
#include "Mobs/Monster.h" // This is a side-effect of keeping Mobfamily inside Monster class. I'd prefer to keep both (Mobfamily and Monster) inside a "Monster" namespace MG TODO : do it
// fwd:
class cChunk;
/** This class is used to collect the list of mobs for each family
*/
class cMobFamilyCollecter
{
public :
typedef const std::set<cMonster::eFamily> tMobFamilyList;
// collect a mob
void CollectMob(cMonster & a_Monster);
// return the number of mobs for this family
int GetNumberOfCollectedMobs(cMonster::eFamily a_Family);
protected :
std::map<cMonster::eFamily, std::set<cMonster *> > m_Mobs;
} ;