mirror of
https://forge.univ-lyon1.fr/tplifap4/dungeonanddeamon.git
synced 2024-02-27 13:31:50 +01:00
12 lines
111 B
C++
12 lines
111 B
C++
#pragma once
|
|
#include "Entite.h"
|
|
class Mobs :
|
|
public Entite
|
|
{
|
|
public:
|
|
int pv;
|
|
int degat;
|
|
int cooldown;
|
|
};
|
|
|