move animationsequence.h

This commit is contained in:
Gered 2012-12-18 10:56:05 -05:00
parent 0f32f72259
commit 195a289451
5 changed files with 18 additions and 18 deletions

15
src/animationsequence.h Normal file
View file

@ -0,0 +1,15 @@
#ifndef __ANIMATIONSEQUENCE_H_INCLUDED__
#define __ANIMATIONSEQUENCE_H_INCLUDED__
#include "common.h"
#include <string>
class AnimationSequence
{
public:
std::string name;
uint32_t start;
uint32_t end;
};
#endif

View file

@ -1,15 +0,0 @@
#ifndef __ASSETS_ANIMATIONSEQUENCE_H_INCLUDED__
#define __ASSETS_ANIMATIONSEQUENCE_H_INCLUDED__
#include "../common.h"
#include <string>
class AnimationSequence
{
public:
std::string name;
uint32_t start;
uint32_t end;
};
#endif

View file

@ -2,7 +2,7 @@
#define __CHUNKS_ANIMATIONS_H_INCLUDED__
#include "../common.h"
#include "../assets/animationsequence.h"
#include "../animationsequence.h"
#include <vector>
struct AnimationsChunk

View file

@ -9,7 +9,7 @@
#include "jointtovertices.h"
#include "keyframes.h"
#include "animations.h"
#include "../assets/animationsequence.h"
#include "../animationsequence.h"
#include "../geometry/group.h"
#include "../geometry/joint.h"
#include "../geometry/jointvertexinfo.h"

View file

@ -1,6 +1,6 @@
#include "meshfile.h"
#include "assets/animationsequence.h"
#include "animationsequence.h"
#include "ms3d/ms3d.h"
#include "chunks/animations.h"
#include "chunks/chunks.h"