mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 16:19:56 +00:00
30 lines
494 B
C++
30 lines
494 B
C++
//
|
|
// Created by koncord on 16.04.17.
|
|
//
|
|
|
|
#ifndef OPENMW_PROCESSORGAMECONSOLE_HPP
|
|
#define OPENMW_PROCESSORGAMECONSOLE_HPP
|
|
|
|
|
|
#include "apps/openmw/mwmp/PlayerProcessor.hpp"
|
|
|
|
namespace mwmp
|
|
{
|
|
class ProcessorGameConsole : public PlayerProcessor
|
|
{
|
|
public:
|
|
ProcessorGameConsole()
|
|
{
|
|
BPP_INIT(ID_GAME_CONSOLE)
|
|
}
|
|
|
|
virtual void Do(PlayerPacket &packet, BasePlayer *player)
|
|
{
|
|
|
|
}
|
|
};
|
|
}
|
|
|
|
|
|
|
|
#endif //OPENMW_PROCESSORGAMECONSOLE_HPP
|