1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-07-02 16:38:41 +00:00

Optimize entity-entity collision (#6587)

* Add IrrLicht type aliases
* Add hash for IrrLicht vector
* Add object map
This commit is contained in:
Vitaliy 2018-04-03 09:23:46 +03:00 committed by Loïc Blot
parent 2481ea27ce
commit 528908a4c3
13 changed files with 613 additions and 80 deletions

View file

@ -99,6 +99,10 @@ class TestFailedException : public std::exception {
UASSERT(exception_thrown); \
}
#define CONCAT_IMPL(x,y) x##y
#define CONCAT(x,y) CONCAT_IMPL(x, y)
#define NEWNAME(prefix) CONCAT(prefix, __COUNTER__)
class IGameDef;
class TestBase {