The A7 templates (aka "t7") are designed to work with your code. You include the t7.dll, send it pointers to the entities you want it to manage, and then manipulate those entities by passing data.
For example:
Code:
entity_add(my); // add this ENTITY to t7
entity_add_cmp(my,t7Cmp_phys); // ENTITY is now a physical object
entity_set(my,t7Edit_weight,1000); // ENTITY's weight is now 1000
entity_act(my,t7Act_push,vector(20,0,0)); // push this entity
...
}
ETA: "Real Soon Now"tm
