openmw-tes3coop/components/openmw-mp/Base/BaseStructs.hpp
2017-04-10 16:33:07 +03:00

23 lines
375 B
C++

#ifndef OPENMW_BASESTRUCTS_HPP
#define OPENMW_BASESTRUCTS_HPP
namespace mwmp
{
struct Animation
{
std::string groupname;
int mode;
int count;
bool persist;
};
struct AnimStates
{
int idlestate;
int movestate;
int jumpstate;
bool forcestateupdate;
};
}
#endif //OPENMW_BASESTRUCTS_HPP