1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-02-13 19:39:44 +00:00
openmw-tes3mp/apps/openmw/mwrender/animation.hpp

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