]> git.localhorst.tv Git - l2e.git/blobdiff - src/battle/PartyLayout.cpp
use referenced flag of array types
[l2e.git] / src / battle / PartyLayout.cpp
index c9451cbc6cf22fbfdd2cdb3ea47af493b00d7edf..00fa930f9eb711853e469e32c61bc14d456ad96d 100644 (file)
@@ -1,16 +1,9 @@
-/*
- * PartyLayout.cpp
- *
- *  Created on: Aug 5, 2012
- *      Author: holy
- */
-
 #include "PartyLayout.h"
 
 #include "../loader/Interpreter.h"
 #include "../loader/TypeDescription.h"
 
-using geometry::Vector;
+using math::Vector;
 using loader::FieldDescription;
 using loader::Interpreter;
 using loader::TypeDescription;
@@ -46,7 +39,7 @@ void PartyLayout::CreateTypeDescription() {
        td.SetConstructor(&Construct);
        td.SetSize(sizeof(PartyLayout));
 
-       td.AddField("positions", FieldDescription(((char *)&p.positions) - ((char *)&p), Interpreter::VECTOR_ID).SetReferenced().SetAggregate().SetDescription("the members' positions"));
+       td.AddField("positions", FieldDescription(((char *)&p.positions) - ((char *)&p), Interpreter::VECTOR_ID).SetAggregate().SetDescription("the members' positions"));
 }
 
 void PartyLayout::Construct(void *data) {