mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 08:49:55 +00:00
22 lines
418 B
C++
22 lines
418 B
C++
//
|
|
// Created by koncord on 03.04.17.
|
|
//
|
|
|
|
#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
|