forked from teamnwah/openmw-tes3coop
16 lines
239 B
C++
16 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
|