1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-15 21:19:57 +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