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