openmw-tes3coop/apps/openmw/mwworld/nullaction.hpp
2015-07-07 22:46:15 +02:00

15 lines
270 B
C++

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