Entity: Add E variable

This commit is contained in:
2021-10-02 20:24:44 +02:00
parent 36c95e5273
commit 9a1a23c73d
2 changed files with 3 additions and 0 deletions

View File

@@ -89,6 +89,7 @@ Entity Entity_New() {
e->B = 0;
e->C = 0;
e->D = 0;
e->E = 0;
e->child = NULL;
e->next = NULL;
@@ -181,6 +182,7 @@ Entity Entity_Copy(Entity e) {
n->B = e->B;
n->C = e->C;
n->D = e->D;
n->E = e->E;
n->child = e->child;
Entity_CalcBBox(n);