fix incorrect/missing #includes

This commit is contained in:
Gered 2012-12-12 15:17:07 -05:00
parent 646cc690cc
commit b2ded5c6ca
4 changed files with 5 additions and 2 deletions

View file

@ -17,6 +17,8 @@
#include "../geometry/triangle.h"
#include "../geometry/vector2.h"
#include "../geometry/vector3.h"
#include <string>
#include <vector>
void WriteFileHeader(FILE *fp)
{

View file

@ -3,6 +3,7 @@
#include "../common.h"
#include "../geometry/group.h"
#include <vector>
struct GroupsChunk
{

View file

@ -2,7 +2,7 @@
#define __GEOMETRY_GROUP_H_INCLUDED__
#include "../common.h"
#include <string.h>
#include <string>
struct Group
{

View file

@ -3,7 +3,7 @@
#include "../common.h"
#include "vector3.h"
#include <string.h>
#include <string>
struct Joint
{