forked from teamnwah/openmw-tes3coop
10 lines
No EOL
249 B
C++
10 lines
No EOL
249 B
C++
#ifndef _GAME_RENDER_ANIMATION_H
|
|
#define _GAME_RENDER_ANIMATION_H
|
|
#include <components/nif/data.hpp>
|
|
namespace MWRender{
|
|
class Animation{
|
|
std::vector<Nif::NiKeyframeData> transformations;
|
|
std::map<std::string,float> textmappings;
|
|
};
|
|
}
|
|
#endif |