mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-23 18:23:51 +00:00
27148ce9eb
Additionally, make it slightly clearer who created which previously existing packets.
18 lines
376 B
C++
18 lines
376 B
C++
#ifndef OPENMW_PROCESSOROBJECTANIMPLAY_HPP
|
|
#define OPENMW_PROCESSOROBJECTANIMPLAY_HPP
|
|
|
|
#include "apps/openmw-mp/WorldProcessor.hpp"
|
|
|
|
namespace mwmp
|
|
{
|
|
class ProcessorObjectAnimPlay : public WorldProcessor
|
|
{
|
|
public:
|
|
ProcessorObjectAnimPlay()
|
|
{
|
|
BPP_INIT(ID_OBJECT_ANIM_PLAY)
|
|
}
|
|
};
|
|
}
|
|
|
|
#endif //OPENMW_PROCESSOROBJECTANIMPLAY_HPP
|