mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-02-03 14:45:35 +00:00
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
|