mirror of
https://forge.univ-lyon1.fr/tplifap4/dungeonanddeamon.git
synced 2024-02-27 13:31:50 +01:00
Let's code
This commit is contained in:
@ -0,0 +1,20 @@
|
||||
#pragma once
|
||||
#include "GestionMobs.h"
|
||||
#include "GestionPlayer.h"
|
||||
#include "GestionTerrain.h"
|
||||
#include "Mobs.h"
|
||||
#include <vector>
|
||||
|
||||
class GestionCollision
|
||||
{
|
||||
public :
|
||||
GestionTerrain gTerrain;
|
||||
GestionMobs gMobs;
|
||||
GestionPlayer gPlayer;
|
||||
|
||||
public:
|
||||
std::vector<Mobs> CheckCollisonSol();
|
||||
std::vector<Mobs> CheckCollisonMur();
|
||||
std::vector<Mobs> CheckCollisonToit();
|
||||
};
|
||||
|
Reference in New Issue
Block a user