4 * Created on: Sep 5, 2012
8 #include "SimpleAnimation.h"
10 #include "../loader/TypeDescription.h"
12 using loader::FieldDescription;
13 using loader::TypeDescription;
17 void SimpleAnimation::CreateTypeDescription() {
20 TypeDescription &td(TypeDescription::CreateOrGet("SimpleAnimation"));
22 td.SetSize(sizeof(SimpleAnimation));
23 td.AddSupertype(TypeDescription::GetTypeId("Animation"), ((char *)a) - ((char *)&sa));
25 int numberId(TypeDescription::GetTypeId("Number"));
27 td.AddField("framecount", FieldDescription(((char *)&sa.numFrames) - ((char *)&sa), numberId, false));
28 td.AddField("col", FieldDescription(((char *)&sa.col) - ((char *)&sa), numberId, false));
29 td.AddField("row", FieldDescription(((char *)&sa.row) - ((char *)&sa), numberId, false));