mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 22:19:54 +00:00
18 lines
296 B
C++
18 lines
296 B
C++
#ifndef GAME_MWWORLD_ACTIONEAT_H
|
|
#define GAME_MWWORLD_ACTIONEAT_H
|
|
|
|
#include "action.hpp"
|
|
|
|
namespace MWWorld
|
|
{
|
|
class ActionEat : public Action
|
|
{
|
|
void executeImp (const Ptr& actor) override;
|
|
|
|
public:
|
|
|
|
ActionEat (const MWWorld::Ptr& object);
|
|
};
|
|
}
|
|
|
|
#endif
|