1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-02-04 12:39:55 +00:00
OpenMW/apps/openmw/mwworld/actioneat.hpp

18 lines
281 B
C++
Raw Normal View History

#ifndef GAME_MWWORLD_ACTIONEAT_H
#define GAME_MWWORLD_ACTIONEAT_H
#include "action.hpp"
namespace MWWorld
{
class ActionEat : public Action
{
2022-09-22 21:26:05 +03:00
void executeImp(const Ptr& actor) override;
2022-09-22 21:26:05 +03:00
public:
ActionEat(const MWWorld::Ptr& object);
};
}
#endif