Delink ActorManager

This commit is contained in:
Aetias
2024-04-13 18:50:33 +02:00
parent 298024544f
commit 5a40c5a0e4
36 changed files with 37217 additions and 36597 deletions
+11
View File
@@ -0,0 +1,11 @@
#pragma once
#include "global.h"
#include "types.h"
#include "lib/math.h"
struct AABB {
Vec3p min;
Vec3p max;
};
+11
View File
@@ -0,0 +1,11 @@
#pragma once
#include "global.h"
#include "types.h"
#include "lib/math.h"
struct Sphere {
Vec3p pos;
int radius;
};