1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-11 09:36:37 +00:00
OpenMW/apps/openmw/mwworld/actiontalk.hpp
2019-02-19 18:40:33 +03:00

20 lines
354 B
C++

#ifndef GAME_MWWORLD_ACTIONTALK_H
#define GAME_MWWORLD_ACTIONTALK_H
#include "action.hpp"
namespace MWWorld
{
class ActionTalk : public Action
{
virtual void executeImp (const Ptr& actor);
public:
ActionTalk (const Ptr& actor);
///< \param actor The actor the player is talking to
};
}
#endif