mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-20 06:53:52 +00:00
20 lines
331 B
C++
20 lines
331 B
C++
|
#ifndef OPENMW_DEDICATEDACTOR_HPP
|
||
|
#define OPENMW_DEDICATEDACTOR_HPP
|
||
|
|
||
|
#include <components/openmw-mp/Base/BaseActor.hpp>
|
||
|
|
||
|
namespace mwmp
|
||
|
{
|
||
|
class DedicatedActor : public BaseActor
|
||
|
{
|
||
|
public:
|
||
|
|
||
|
DedicatedActor();
|
||
|
virtual ~DedicatedActor();
|
||
|
|
||
|
void update();
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif //OPENMW_DEDICATEDACTOR_HPP
|