1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-07 12:54:00 +00:00
OpenMW/apps/openmw/mwworld/nullaction.hpp
2020-10-16 22:18:54 +04:00

18 lines
324 B
C++

#ifndef GAME_MWWORLD_NULLACTION_H
#define GAME_MWWORLD_NULLACTION_H
#include "action.hpp"
namespace MWWorld
{
/// \brief Action: do nothing
class NullAction : public Action
{
void executeImp (const Ptr& actor) override {}
bool isNullAction() override { return true; }
};
}
#endif