forked from teamnwah/openmw-tes3coop
19 lines
331 B
C++
19 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
|