1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-26 18:35:20 +00:00
OpenMW/apps/openmw/mwworld/nullaction.hpp

18 lines
315 B
C++
Raw Normal View History

2010-08-03 18:20:15 +02:00
#ifndef GAME_MWWORLD_NULLACTION_H
#define GAME_MWWORLD_NULLACTION_H
#include "action.hpp"
namespace MWWorld
{
/// \brief Action: do nothing
class NullAction : public Action
{
2022-09-22 21:26:05 +03:00
void executeImp(const Ptr& actor) override {}
2022-09-22 21:26:05 +03:00
bool isNullAction() override { return true; }
2010-08-03 18:20:15 +02:00
};
}
#endif