public void Setup()
 {
     _npcTurner = new NpcTurner();
 }
 public NpcToLeftMover(IGameModel gameModel, IPositionFinder positionFinder, INpcTurner npcTurner)
 {
     _gameModel      = gameModel;
     _positionFinder = positionFinder;
     _npcTurner      = npcTurner;
 }