forked from mirror/openmw-tes3mp
15 lines
239 B
C++
15 lines
239 B
C++
#ifndef OPENMW_BASESTRUCTS_HPP
|
|
#define OPENMW_BASESTRUCTS_HPP
|
|
|
|
namespace mwmp
|
|
{
|
|
struct Animation
|
|
{
|
|
std::string groupname;
|
|
int mode;
|
|
int count;
|
|
bool persist;
|
|
};
|
|
}
|
|
|
|
#endif //OPENMW_BASESTRUCTS_HPP
|