public static void MoveTo(Entity entity, Vector2 cellPosition)
    {
        if (!RegionManager.ContainsCell(cellPosition))
        {
            return;
        }

        Instruction instr = new Instruction(entity, cellPosition);
    }