mirror of
https://github.com/TES3MP/TES3MP.git
synced 2025-10-17 19:11:07 -04:00
12 lines
367 B
C++
12 lines
367 B
C++
#ifndef _GAME_RENDER_NPCANIMATION_H
|
|
#define _GAME_RENDER_NPCANIMATION_H
|
|
#include "animation.hpp"
|
|
#include <components/nif/data.hpp>
|
|
#include <components/nif/node.hpp>
|
|
namespace MWRender{
|
|
|
|
class NpcAnimation: Animation{
|
|
std::vector<std::vector<Nif::NiTriShapeCopy>> shapeparts; //All the NiTriShape data that we need for animating this particular npc
|
|
};
|
|
}
|
|
#endif |