mirror of
https://forge.univ-lyon1.fr/tplifap4/dungeonanddeamon.git
synced 2024-02-27 13:31:50 +01:00
22 lines
443 B
C++
22 lines
443 B
C++
#include "GestionMobs.h"
|
|
|
|
#include "MobsCorpACorpIA.h"
|
|
|
|
void GestionMobs::AjoutMobC2C(int pvMax, int speed, int degat, int cooldown, int rangeDegat, int rangeAgro)
|
|
{
|
|
MobsCorpACorpIA* fireElement = MobsCorpACorpIA::_new();
|
|
mobs.push_back(fireElement);
|
|
}
|
|
|
|
void GestionMobs::AjoutMobDistance(int pvMax, int speed, int degat, int cooldown, int rangeAgro)
|
|
{
|
|
}
|
|
|
|
void GestionMobs::SupprimerMob(int id)
|
|
{
|
|
}
|
|
|
|
void GestionMobs::SupprimerTout()
|
|
{
|
|
}
|