mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-08 09:37:53 +00:00
23 lines
378 B
C++
23 lines
378 B
C++
#ifndef GAME_MWWORLD_ACTIONTALK_H
|
|
#define GAME_MWWORLD_ACTIONTALK_H
|
|
|
|
#include "ptr.hpp"
|
|
#include "action.hpp"
|
|
|
|
namespace MWWorld
|
|
{
|
|
class ActionTalk : public Action
|
|
{
|
|
Ptr mActor;
|
|
|
|
public:
|
|
|
|
ActionTalk (const Ptr& actor);
|
|
///< \param actor The actor the player is talking to
|
|
|
|
virtual void execute();
|
|
};
|
|
}
|
|
|
|
#endif
|