mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-08-06 10:44:08 +00:00
Public release of the DLU server code!
Have fun!
This commit is contained in:
12
dPhysics/dpCollisionChecks.h
Normal file
12
dPhysics/dpCollisionChecks.h
Normal file
@@ -0,0 +1,12 @@
|
||||
#pragma once
|
||||
class dpEntity;
|
||||
|
||||
namespace dpCollisionChecks {
|
||||
bool AreColliding(dpEntity* a, dpEntity* b);
|
||||
|
||||
bool CheckSpheres(dpEntity* a, dpEntity* b);
|
||||
|
||||
bool CheckBoxes(dpEntity* a, dpEntity* b);
|
||||
|
||||
bool CheckSphereBox(dpEntity* a, dpEntity* b);
|
||||
};
|
Reference in New Issue
Block a user